about summary refs log tree commit diff
path: root/Src/utils.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2005-09-20 15:41:22 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2005-09-20 15:41:22 +0000
commit29bb2438c0d8a731630ab466a050b0c3bdc82827 (patch)
tree1e003f142b780a0ce577791fa4ebdf5e7c2308f4 /Src/utils.c
parent33c9432d56cbb454ecd48335af22053aca2416bc (diff)
downloadzsh-29bb2438c0d8a731630ab466a050b0c3bdc82827.tar.gz
zsh-29bb2438c0d8a731630ab466a050b0c3bdc82827.tar.xz
zsh-29bb2438c0d8a731630ab466a050b0c3bdc82827.zip
unposted: fix wcsiident
Diffstat (limited to 'Src/utils.c')
-rw-r--r--Src/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/utils.c b/Src/utils.c
index 561624f51..acde33c28 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -2601,7 +2601,7 @@ wcsiident(wchar_t c)
 	/* NULL is special */
 	return 0;
     } else if (len == 1 && isascii(*outstr)) {
-	return iword(*outstr);
+	return iident(*outstr);
     } else {
 	/* not currently allowed, see above */
 	return 0;