about summary refs log tree commit diff
path: root/Src/options.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2007-02-06 21:47:54 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2007-02-06 21:47:54 +0000
commit0108088f52ee58fc8a2e83f86c9f2506165a16cd (patch)
treebebb78bce7e19684f24c7e6c9b46cf1f2d65f6ce /Src/options.c
parentbae2ec88e587efb6f0cc9ef8db5d3c8b6de78382 (diff)
downloadzsh-0108088f52ee58fc8a2e83f86c9f2506165a16cd.tar.gz
zsh-0108088f52ee58fc8a2e83f86c9f2506165a16cd.tar.xz
zsh-0108088f52ee58fc8a2e83f86c9f2506165a16cd.zip
23152: make ztrcmp() respect MULTIBYTE
make sorting of printed hash tables more consistent
Diffstat (limited to 'Src/options.c')
-rw-r--r--Src/options.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/options.c b/Src/options.c
index d5e5ee552..d0474498c 100644
--- a/Src/options.c
+++ b/Src/options.c
@@ -578,7 +578,8 @@ bin_setopt(char *nam, char **args, UNUSED(Options ops), int isun)
 		continue;
 	    }
 	    /* Loop over expansions. */
-	    scanmatchtable(optiontab, pprog, 0, OPT_ALIAS, setoption, !isun);
+	    scanmatchtable(optiontab, pprog, 0, 0, OPT_ALIAS,
+			   setoption, !isun);
 	    args++;
 	}
     }