diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2007-02-06 21:47:54 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-02-06 21:47:54 +0000 |
commit | 0108088f52ee58fc8a2e83f86c9f2506165a16cd (patch) | |
tree | bebb78bce7e19684f24c7e6c9b46cf1f2d65f6ce /Src/module.c | |
parent | bae2ec88e587efb6f0cc9ef8db5d3c8b6de78382 (diff) | |
download | zsh-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/module.c')
-rw-r--r-- | Src/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/module.c b/Src/module.c index 398958cce..fa6d50c6e 100644 --- a/Src/module.c +++ b/Src/module.c @@ -1265,7 +1265,7 @@ bin_zmodload_auto(char *nam, char **args, Options ops) return ret; } else if(!*args) { /* list autoloaded builtins */ - scanhashtable(builtintab, 0, 0, 0, + scanhashtable(builtintab, 1, 0, 0, autoloadscan, OPT_ISSET(ops,'L') ? PRINT_LIST : 0); return 0; } else { |