diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2005-02-18 17:30:55 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2005-02-18 17:30:55 +0000 |
commit | e34d2df07013f399908f0723648e405b6b7497a9 (patch) | |
tree | 0dcf61c72b0dd6dcd8fb34cb535470817e520959 | |
parent | c9334d616ff8b442862ccb1b0fc79a62bd4bfd88 (diff) | |
download | zsh-e34d2df07013f399908f0723648e405b6b7497a9.tar.gz zsh-e34d2df07013f399908f0723648e405b6b7497a9.tar.xz zsh-e34d2df07013f399908f0723648e405b6b7497a9.zip |
20828: typos in 20822
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Src/Zle/zle_misc.c | 2 | ||||
-rw-r--r-- | Src/Zle/zle_tricky.c | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index b6cf2fe12..67e301d2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,8 @@ 2005-02-18 Peter Stephenson <pws@csr.com> + * 20828: Src/zle_main.c, Src/zle_misc.c: typos in 20822. + * 20823: Src/Modules/stat.c: debugging test failed on 64-bit machines. diff --git a/Src/Zle/zle_misc.c b/Src/Zle/zle_misc.c index 134ae21af..081c720cd 100644 --- a/Src/Zle/zle_misc.c +++ b/Src/Zle/zle_misc.c @@ -86,7 +86,7 @@ fixunmeta(void) * with multibyte input. */ lastchar_wide = (ZLE_CHAR_T)lastchar; - lastchar_wide_valid = TRUE; + lastchar_wide_valid = 1; #endif } diff --git a/Src/Zle/zle_tricky.c b/Src/Zle/zle_tricky.c index 15c723d7a..f7559f08c 100644 --- a/Src/Zle/zle_tricky.c +++ b/Src/Zle/zle_tricky.c @@ -2308,7 +2308,7 @@ fixmagicspace(void) * since lastchar is a full character, but it's safer anyway... */ lastchar_wide = L' '; - lastchar_wide_valid = TRUE; + lastchar_wide_valid = 1; #endif } |