summaryrefslogtreecommitdiff
path: root/Src/hist.c
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2015-01-25 12:27:51 -0800
committerBarton E. Schaefer <schaefer@zsh.org>2015-01-25 13:15:34 -0800
commit2546c86244ec2bb458580a90a0a5e0648220ad9a (patch)
tree2542fed5f69d4a2b8a3f7ce0955aca5170172c2a /Src/hist.c
parent4688de16772beffc315bbf765475a2932cbd8628 (diff)
downloadzsh-2546c86244ec2bb458580a90a0a5e0648220ad9a.tar.gz
zsh-2546c86244ec2bb458580a90a0a5e0648220ad9a.zip
34389: fix parsing of ">!" when read from histfile with HIST_LEX_WORDS
Diffstat (limited to 'Src/hist.c')
-rw-r--r--Src/hist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/hist.c b/Src/hist.c
index 303c1dd4a..381c7e2e5 100644
--- a/Src/hist.c
+++ b/Src/hist.c
@@ -3473,7 +3473,8 @@ histsplitwords(char *lineptr, short **wordsp, int *nwordsp, int *nwordposp,
if (*lptr == *wptr ||
(*lptr == '!' && *wptr == '|')) {
lptr++;
- wptr++;
+ if (!*++wptr)
+ break;
} else if (lptr[0] == '\\' &&
lptr[1] == '\n') {
/*