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-27 14:30:30 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2005-09-27 14:30:30 +0000
commitf3c0df36be042489041968c57b201a1f44664c2b (patch)
tree0b87495387c84b47eea73acfda9d48eb3342c6fa /Src/utils.c
parent161746bd9b27e9cc059b2f3b886c352000450022 (diff)
downloadzsh-f3c0df36be042489041968c57b201a1f44664c2b.tar.gz
zsh-f3c0df36be042489041968c57b201a1f44664c2b.tar.xz
zsh-f3c0df36be042489041968c57b201a1f44664c2b.zip
21769: fix some consequences of 21730 in completion lists
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 8a7c557f0..7bf4213c7 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -260,7 +260,7 @@ nicechar(int c)
      * This can't happen if the character is printed "nicely", so
      * this results in a maximum of two bytes total (plus the null).
      */
-    if (itok(c)) {
+    if (imeta(c)) {
 	*s++ = Meta;
 	*s++ = c ^ 32;
     } else