Browse Source

Made UI more consistent when comments are entered.

pre-master-46
Jim Monte 6 years ago
committed by Holger Vogt
parent
commit
271afc87cf
  1. 5
      src/frontend/parser/lexical.c

5
src/frontend/parser/lexical.c

@ -225,8 +225,11 @@ nloop:
tfree(linebuf.s);
return NULL;
}
while (((c = cp_readchar(&string, cp_inp_cur)) != '\n') && (c != EOF))
while (((c = cp_readchar(&string, cp_inp_cur)) != '\n') &&
(c != EOF)) {
;
}
prompt();
goto nloop;
}

Loading…
Cancel
Save