diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2006-01-12 00:51:38 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2006-01-12 00:51:38 +0000 |
commit | 3039f65d741f2d9241528c1ea0a7af0b6dfcfd64 (patch) | |
tree | 1df49be3aed920dd7bec0af434174a80acb14fdc | |
parent | 5af164ea1f12653b024ad4dddfeec93655926f3c (diff) | |
download | zsh-3039f65d741f2d9241528c1ea0a7af0b6dfcfd64.tar.gz zsh-3039f65d741f2d9241528c1ea0a7af0b6dfcfd64.tar.xz zsh-3039f65d741f2d9241528c1ea0a7af0b6dfcfd64.zip |
Define MB_INCOMPLETE and MB_INVALID for MULTIBYTE_SUPPORT.
-rw-r--r-- | Src/zsh.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index 26d645203..63490a34d 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -1931,4 +1931,7 @@ typedef char *(*ZleGetLineFn) _((int *, int *)); #ifdef MULTIBYTE_SUPPORT #define nicezputs(str, outs) (void)mb_niceformat((str), (outs), NULL, 0) + +#define MB_INCOMPLETE ((size_t)-2) +#define MB_INVALID ((size_t)-1) #endif |