diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2007-01-21 22:49:56 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-01-21 22:49:56 +0000 |
| commit | c53aa4adee9236a08d2d88c6e753588760b88f0e (patch) | |
| tree | 67a96b893514eb01ab599ece07a01db217cba966 | |
| parent | 23118: improve sorting to make it work with locales (diff) | |
| download | zsh-c53aa4adee9236a08d2d88c6e753588760b88f0e.tar zsh-c53aa4adee9236a08d2d88c6e753588760b88f0e.tar.gz zsh-c53aa4adee9236a08d2d88c6e753588760b88f0e.tar.bz2 zsh-c53aa4adee9236a08d2d88c6e753588760b88f0e.tar.lz zsh-c53aa4adee9236a08d2d88c6e753588760b88f0e.tar.xz zsh-c53aa4adee9236a08d2d88c6e753588760b88f0e.tar.zst zsh-c53aa4adee9236a08d2d88c6e753588760b88f0e.zip | |
unposted; typo
| -rw-r--r-- | Src/Zle/computil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c index 1dbefa589..f9c55296c 100644 --- a/Src/Zle/computil.c +++ b/Src/Zle/computil.c @@ -213,7 +213,7 @@ cd_calc() static int cd_sort(const void *a, const void *b) { - return zstrpcmp((*((Cdstr *) a))->sortstr, (*((Cdstr *) b))->sortstr, 0); + return zstrcmp((*((Cdstr *) a))->sortstr, (*((Cdstr *) b))->sortstr, 0); } static int |
