about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Src/utils.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b286821fc..4c4ad3c3d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-29  Geoff Wing  <gcw@zsh.org>
+
+	* unposted: Src/utils.c: fix prototype generation for non
+	multibyte compilation
+
 2005-11-25  Peter Stephenson  <pws@csr.com>
 
 	* 22031: Nikolai Weibull: Completion/Unix/Command/_git: new
diff --git a/Src/utils.c b/Src/utils.c
index f32b162f7..19ec4ab6e 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -2618,6 +2618,7 @@ inittyptab(void)
 }
 
 
+/**/
 #ifdef MULTIBYTE_SUPPORT
 /* A wide-character version of the iblank() macro. */
 /**/
@@ -2690,6 +2691,7 @@ wcsiident(wchar_t c)
 	return 0;
     }
 }
+/**/
 #endif