diff options
-rw-r--r-- | Src/zsh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index d59fc44e4..2888ec5a9 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -1432,10 +1432,10 @@ struct histent { Histent up; /* previous line (moving upward) */ Histent down; /* next line (moving downward) */ -#ifdef MULTIBYTE_SUPPORT +#ifdef MULTIBYTE_SUPPORT /* (Note: must match ZLE_STRING_T!) */ wchar_t *zle_text; /* the edited history line */ #else - unsigned char *zle_text; /* the edited history line */ + char *zle_text; /* the edited history line */ #endif int zle_len; /* length of zle_text */ time_t stim; /* command started time (datestamp) */ |