about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
Diffstat (limited to 'Src')
-rw-r--r--Src/Zle/zle_misc.c2
-rw-r--r--Src/Zle/zle_tricky.c2
2 files changed, 2 insertions, 2 deletions
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
 }