summaryrefslogtreecommitdiff
path: root/Src/utils.c
diff options
context:
space:
mode:
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