diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Src/lex.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2013-07-22 Peter Stephenson <p.w.stephenson@ntlworld.com> + * unposted: Src/lex.c: correct previous commit: should call + hwend(), not ihwend(). + * 31559: Src/lex.c: Fix problem with history lines for comments that occur in the middle of an alias. @@ -778,7 +778,7 @@ gettok(void) bptr = tokstr = (char *)hcalloc(bsiz = 32); add(c); } - ihwend(); + hwend(); while ((c = ingetc()) != '\n' && !lexstop) { hwaddc(c); addtoline(c); |