diff options
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/zle_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Zle/zle_main.c b/Src/Zle/zle_main.c index 8c65d217f..7aa0948ad 100644 --- a/Src/Zle/zle_main.c +++ b/Src/Zle/zle_main.c @@ -1457,7 +1457,7 @@ bin_vared(char *name, char **args, Options ops, UNUSED(int func)) sepcount++; } else { t += MB_METACHARLENCONV(t, &c); - if (MB_ZISTYPE(c, ISEP)) + if (WC_ZISTYPE(c, ISEP)) sepcount++; } } @@ -1473,7 +1473,7 @@ bin_vared(char *name, char **args, Options ops, UNUSED(int func)) *nptr++ = *t++; } else { clen = MB_METACHARLENCONV(t, &c); - if (MB_ZISTYPE(c, ISEP)) + if (WC_ZISTYPE(c, ISEP)) *nptr++ = '\\'; while (clen--) *nptr++ = *t++; |