diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2005-10-28 17:34:33 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2005-10-28 17:34:33 +0000 |
commit | aea77152614952519351b5a52b6ec19ea7c302c2 (patch) | |
tree | 12c6d5e230749099ad19a5f75bb9cfa7ce18ba70 /Src/system.h | |
parent | 5f11a38bea0b4d843c72dbdb9fab23280a0aa228 (diff) | |
download | zsh-aea77152614952519351b5a52b6ec19ea7c302c2.tar.gz zsh-aea77152614952519351b5a52b6ec19ea7c302c2.tar.xz zsh-aea77152614952519351b5a52b6ec19ea7c302c2.zip |
21943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT;
use multibyte versions of nicechar wherever possible.
Diffstat (limited to 'Src/system.h')
-rw-r--r-- | Src/system.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/system.h b/Src/system.h index 45f6cb6d1..3b698161a 100644 --- a/Src/system.h +++ b/Src/system.h @@ -692,13 +692,13 @@ extern short ospeed; #endif /* - * The ZLE_UNICODE_SUPPORT configure-define specifies that we want to enable + * The MULTIBYTE_SUPPORT configure-define specifies that we want to enable * complete Unicode conversion between wide characters and multibyte strings. */ -#if defined ZLE_UNICODE_SUPPORT \ +#if defined MULTIBYTE_SUPPORT \ || (defined HAVE_WCHAR_H && defined HAVE_WCTOMB && defined __STDC_ISO_10646__) /* - * If ZLE_UNICODE_SUPPORT is not defined, these includes provide a subset of + * If MULTIBYTE_SUPPORT is not defined, these includes provide a subset of * Unicode support that makes the \u and \U printf escape sequences work. */ # include <wchar.h> |