alter command repaired

This commit is contained in:
h_vogt 2009-02-01 09:50:40 +00:00
parent 5dac6590e2
commit 0880c33088
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}