about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGeoff Wing <gcw@users.sourceforge.net>2005-11-29 01:43:14 +0000
committerGeoff Wing <gcw@users.sourceforge.net>2005-11-29 01:43:14 +0000
commitfac5d69b8b4f154d0105a8278160cb18a04631f9 (patch)
treed0eebeb7e9bc3fa26b25a95342075de86c4d0c7f
parentab5111a5cb09eeeae0db356c261cf02c1a43755c (diff)
downloadzsh-fac5d69b8b4f154d0105a8278160cb18a04631f9.tar.gz
zsh-fac5d69b8b4f154d0105a8278160cb18a04631f9.tar.xz
zsh-fac5d69b8b4f154d0105a8278160cb18a04631f9.zip
fix utils.c prototype generation for non multibyte build
-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