From 0880c33088f42e4cddc6f691859da34b1d5eba3d Mon Sep 17 00:00:00 2001 From: h_vogt Date: Sun, 1 Feb 2009 09:50:40 +0000 Subject: [PATCH] alter command repaired --- src/frontend/inpcom.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index b3f87721a..7c07d2e45 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -1804,6 +1804,7 @@ inp_remove_excess_ws(struct line *deck ) struct line *c = deck; while ( c != NULL ) { if ( *c->li_line == '*' ) { c = c->li_next; continue; } + if ( ciprefix( "alter", c->li_line ) ) { c = c->li_next; continue; } c->li_line = inp_remove_ws(c->li_line); c = c->li_next; }