From 19fe2dcc03d6f3c418e738061e46d0ae013c2550 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Sat, 21 Apr 2012 18:42:56 +0000 Subject: 30433: double backslash is not line continuation. --- ChangeLog | 6 +++++- Src/hist.c | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3e470032c..ea0a02f06 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-04-21 Barton E. Schaefer + + * 30433: Src/hist.c: double backslash is not line continuation. + 2012-04-20 Mikael Magnusson * 30412: Doc/Zsh/zle.yo: Document the set-local-history @@ -16219,5 +16223,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5635 $ +* $Revision: 1.5636 $ ***************************************************** diff --git a/Src/hist.c b/Src/hist.c index 4d522dddb..0e63dca37 100644 --- a/Src/hist.c +++ b/Src/hist.c @@ -2225,7 +2225,8 @@ readhistline(int start, char **bufp, int *bufsiz, FILE *in) } else { buf[len - 1] = '\0'; - if (len > 1 && buf[len - 2] == '\\') { + if (len > 1 && buf[len - 2] == '\\' && + (len < 3 || buf[len - 3] != '\\')) { buf[--len - 1] = '\n'; if (!feof(in)) return readhistline(len, bufp, bufsiz, in); -- cgit 1.4.1