diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2004-10-01 19:48:57 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2004-10-01 19:48:57 +0000 |
commit | 74fb5712a2449ecda572d8d171249dc760c26c5c (patch) | |
tree | 768aa143a63dfa063f2c9884c76fc612d23139a4 /Src/params.c | |
parent | 89eb92d8c270561a5f7d6e24114b3febf3078e24 (diff) | |
download | zsh-74fb5712a2449ecda572d8d171249dc760c26c5c.tar.gz zsh-74fb5712a2449ecda572d8d171249dc760c26c5c.tar.xz zsh-74fb5712a2449ecda572d8d171249dc760c26c5c.zip |
- Call saveandpophiststack() with its new writeflags arg.
Diffstat (limited to 'Src/params.c')
-rw-r--r-- | Src/params.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/params.c b/Src/params.c index 183b4927c..5d2dee506 100644 --- a/Src/params.c +++ b/Src/params.c @@ -3611,7 +3611,8 @@ mod_export void endparamscope(void) { locallevel--; - saveandpophiststack(0); /* Pops anything from a higher locallevel */ + /* This pops anything from a higher locallevel */ + saveandpophiststack(0, HFILE_USE_OPTIONS); scanhashtable(paramtab, 0, 0, 0, scanendscope, 0); } |