about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2004-10-01 19:48:57 +0000
committerWayne Davison <wayned@users.sourceforge.net>2004-10-01 19:48:57 +0000
commit74fb5712a2449ecda572d8d171249dc760c26c5c (patch)
tree768aa143a63dfa063f2c9884c76fc612d23139a4 /Src
parent89eb92d8c270561a5f7d6e24114b3febf3078e24 (diff)
downloadzsh-74fb5712a2449ecda572d8d171249dc760c26c5c.tar.gz
zsh-74fb5712a2449ecda572d8d171249dc760c26c5c.tar.xz
zsh-74fb5712a2449ecda572d8d171249dc760c26c5c.zip
- Call saveandpophiststack() with its new writeflags arg.
Diffstat (limited to 'Src')
-rw-r--r--Src/params.c3
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);
 }