diff options
| author | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2013-07-22 20:58:57 +0100 |
|---|---|---|
| committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2013-07-22 20:58:57 +0100 |
| commit | 6533ae0719af7a0dee563ed3d74aaf3a565e337a (patch) | |
| tree | 026afee90aba4f181264a188dedd20979e677ba3 | |
| parent | 31558: name of qemu executable changed in completion. (diff) | |
| download | zsh-6533ae0719af7a0dee563ed3d74aaf3a565e337a.tar zsh-6533ae0719af7a0dee563ed3d74aaf3a565e337a.tar.gz zsh-6533ae0719af7a0dee563ed3d74aaf3a565e337a.tar.bz2 zsh-6533ae0719af7a0dee563ed3d74aaf3a565e337a.tar.lz zsh-6533ae0719af7a0dee563ed3d74aaf3a565e337a.tar.xz zsh-6533ae0719af7a0dee563ed3d74aaf3a565e337a.tar.zst zsh-6533ae0719af7a0dee563ed3d74aaf3a565e337a.zip | |
31559: Fix history line problem with aliases and comments
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | Src/lex.c | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2013-07-22 Peter Stephenson <p.w.stephenson@ntlworld.com> + * 31559: Src/lex.c: Fix problem with history lines for comments + that occur in the middle of an alias. + * Eric Cook: 31558: Completion/Command/Unix/_qemu: name of binary has changed. @@ -778,6 +778,7 @@ gettok(void) bptr = tokstr = (char *)hcalloc(bsiz = 32); add(c); } + ihwend(); while ((c = ingetc()) != '\n' && !lexstop) { hwaddc(c); addtoline(c); |
