diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2017-02-24 05:17:04 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2017-02-25 08:05:11 +0000 |
commit | 6c476c22111122006dcacc767b2c2846ede881e8 (patch) | |
tree | e56e37dae2e03cf23992731092d835418915f0ab /Src/Modules | |
parent | db44b17150b05be43f5eff7e6cc5fe474fce5087 (diff) | |
download | zsh-6c476c22111122006dcacc767b2c2846ede881e8.tar.gz zsh-6c476c22111122006dcacc767b2c2846ede881e8.tar.xz zsh-6c476c22111122006dcacc767b2c2846ede881e8.zip |
40626: Make $options re-settable.
Follow-up to 40508. Reported-by: James McGlashan
Diffstat (limited to 'Src/Modules')
-rw-r--r-- | Src/Modules/parameter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Modules/parameter.c b/Src/Modules/parameter.c index c251e4f97..c7aac88d1 100644 --- a/Src/Modules/parameter.c +++ b/Src/Modules/parameter.c @@ -937,7 +937,7 @@ unsetpmoption(Param pm, UNUSED(int exp)) /**/ static void -setpmoptions(UNUSED(Param pm), HashTable ht) +setpmoptions(Param pm, HashTable ht) { int i; HashNode hn; @@ -962,7 +962,7 @@ setpmoptions(UNUSED(Param pm), HashTable ht) (val && strcmp(val, "off")), 0, opts)) zwarn("can't change option: %s", hn->nam); } - deleteparamtable(ht); + hashsetfn(pm, ht); } static const struct gsu_scalar pmoption_gsu = |