diff options
author | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2015-03-26 20:28:13 +0000 |
---|---|---|
committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2015-03-26 20:28:13 +0000 |
commit | 3774bae034560252756ec76b91ce03198dd8daf0 (patch) | |
tree | e9da933091592f9f22e666ab01da5f02b310dd9c /Src/zsh.h | |
parent | 784a9f786d8c93095b6254a2d7a6d44c72f7f95f (diff) | |
download | zsh-3774bae034560252756ec76b91ce03198dd8daf0.tar.gz zsh-3774bae034560252756ec76b91ce03198dd8daf0.tar.xz zsh-3774bae034560252756ec76b91ce03198dd8daf0.zip |
34784: fix old bug with history word selection
Diffstat (limited to 'Src/zsh.h')
-rw-r--r-- | Src/zsh.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index 403e8d3b9..486ad800a 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -411,8 +411,9 @@ enum { #define INP_HIST (1<<2) /* expanding history */ #define INP_CONT (1<<3) /* continue onto previously stacked input */ #define INP_ALCONT (1<<4) /* stack is continued from alias expn. */ -#define INP_LINENO (1<<5) /* update line number */ -#define INP_APPEND (1<<6) /* Append new lines to allow backup */ +#define INP_HISTCONT (1<<5) /* stack is continued from history expn. */ +#define INP_LINENO (1<<6) /* update line number */ +#define INP_APPEND (1<<7) /* Append new lines to allow backup */ /* Flags for metafy */ #define META_REALLOC 0 |