diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2005-02-25 15:10:01 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2005-02-25 15:10:01 +0000 |
commit | f7ceca4fec16666c16be3f5a68feb9e4b9aeb667 (patch) | |
tree | 31defcf0efc43f1fbe7797151da1d1244cb6b139 /Src/Zle/zle.h | |
parent | c7eb5a72f182af5caa04ed83c5b2b680884b7650 (diff) | |
download | zsh-f7ceca4fec16666c16be3f5a68feb9e4b9aeb667.tar.gz zsh-f7ceca4fec16666c16be3f5a68feb9e4b9aeb667.tar.xz zsh-f7ceca4fec16666c16be3f5a68feb9e4b9aeb667.zip |
20869: more small Unicode tweaks
Diffstat (limited to 'Src/Zle/zle.h')
-rw-r--r-- | Src/Zle/zle.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Src/Zle/zle.h b/Src/Zle/zle.h index d5fac1a80..f23d7aa2c 100644 --- a/Src/Zle/zle.h +++ b/Src/Zle/zle.h @@ -59,8 +59,8 @@ typedef wint_t ZLE_INT_T; #define ZS_strncpy wcsncpy #define ZS_strncmp wcsncmp -#define ZC_icntrl iswcntrl #define ZC_iblank iswspace +#define ZC_icntrl iswcntrl /* * TODO: doesn't work on arguments with side effects. * Also YUK. Not even sure this is guaranteed to work. @@ -68,6 +68,7 @@ typedef wint_t ZLE_INT_T; #define ZC_iident(x) (x < 256 && iident((int)x)) #define ZC_tolower towlower +#define ZC_toupper towupper #define LASTFULLCHAR lastchar_wide @@ -93,11 +94,12 @@ typedef int ZLE_INT_T; #define ZS_strncpy strncpy #define ZS_strncmp strncmp -#define ZC_icntrl icntrl #define ZC_iblank iblank +#define ZC_icntrl icntrl #define ZC_iident iident #define ZC_tolower tulower +#define ZC_toupper tuupper #define LASTFULLCHAR lastchar |