From d33c6e502ab4d4398efa797702b6b115e6f5ff41 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Fri, 9 Sep 2005 20:34:42 +0000 Subject: 21722: fix multibyte word stuff --- Src/Zle/zle_misc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Src/Zle/zle_misc.c') diff --git a/Src/Zle/zle_misc.c b/Src/Zle/zle_misc.c index 7159113a6..5a97b0a75 100644 --- a/Src/Zle/zle_misc.c +++ b/Src/Zle/zle_misc.c @@ -623,10 +623,10 @@ copyprevword(UNUSED(char **args)) int len, t0; for (t0 = zlecs - 1; t0 >= 0; t0--) - if (iword(zleline[t0])) + if (ZC_iword(zleline[t0])) break; for (; t0 >= 0; t0--) - if (!iword(zleline[t0])) + if (!ZC_iword(zleline[t0])) break; if (t0) t0++; -- cgit 1.4.1