diff options
author | Peter Stephenson <pws@zsh.org> | 2015-01-06 17:05:17 +0000 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2015-01-08 12:24:00 +0000 |
commit | c0d01a6fe0c67911650730cf13a2b9a0db16e59b (patch) | |
tree | 617d685ec8fabe09e1b83874d961436b86b16259 /Src/zsh.h | |
parent | 93846edb0d5d606e167f929532608eaea273c23f (diff) | |
download | zsh-c0d01a6fe0c67911650730cf13a2b9a0db16e59b.tar.gz zsh-c0d01a6fe0c67911650730cf13a2b9a0db16e59b.tar.xz zsh-c0d01a6fe0c67911650730cf13a2b9a0db16e59b.zip |
Fix command substitutions to parse contents as they are read in.
Do this by refactoring misnamed lexsave()/lexrestore() to allow continuity of history and input. Add test.
Diffstat (limited to 'Src/zsh.h')
-rw-r--r-- | Src/zsh.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index b366e0ff4..475b7824f 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -421,6 +421,15 @@ enum { #define META_HEAPDUP 6 #define META_HREALLOC 7 +/* Context to save and restore (bit fields) */ +enum { + /* History mechanism */ + ZCONTEXT_HIST = (1<<0), + /* Lexical analyser */ + ZCONTEXT_LEX = (1<<1), + /* Parser */ + ZCONTEXT_PARSE = (1<<2) +}; /**************************/ /* Abstract types for zsh */ |