diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-04-23 08:39:58 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-04-23 08:39:58 +0000 |
commit | 1e41a8a44a7fce08523996d4682b12cb22ec67a4 (patch) | |
tree | 87e250566d29ae783b3852b5e66744eefaceed7f /Src | |
parent | e210f8d614dced7b44f07651ee1b058adadcb4a4 (diff) | |
download | zsh-1e41a8a44a7fce08523996d4682b12cb22ec67a4.tar.gz zsh-1e41a8a44a7fce08523996d4682b12cb22ec67a4.tar.xz zsh-1e41a8a44a7fce08523996d4682b12cb22ec67a4.zip |
24864: Jun. T: typos in alternative wcwidth().
Diffstat (limited to 'Src')
-rw-r--r-- | Src/zsh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index 727dcefd6..818953c0d 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -2257,7 +2257,7 @@ typedef wint_t convchar_t; #define MB_METASTRLEN2(str, widthp) mb_metastrlen(str, widthp) #ifdef BROKEN_WCWIDTH -#define WCWIDTH(wc) wcwidth_mk(wc) +#define WCWIDTH(wc) mk_wcwidth(wc) #else #define WCWIDTH(wc) wcwidth(wc) #endif |