Browse Source

alter command repaired

pre-master-46
h_vogt 17 years ago
parent
commit
0880c33088
  1. 1
      src/frontend/inpcom.c

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

Loading…
Cancel
Save