From 16697055ac20db20a29ecfd6278f0958c669ac00 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 1 Nov 2005 03:26:50 +0000 Subject: Changed zle_text to a "char *" to match the new ZLE_STRING_T. --- Src/zsh.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Src/zsh.h') 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) */ -- cgit 1.4.1