From 5f33a93afb4da354ce81a564805826995550d275 Mon Sep 17 00:00:00 2001 From: Jun-ichi Takimoto Date: Mon, 18 Dec 2017 12:48:25 +0900 Subject: 42116: multibyte support for ZLE vi-mode word motion --- Src/Zle/textobjects.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'Src/Zle/textobjects.c') diff --git a/Src/Zle/textobjects.c b/Src/Zle/textobjects.c index bf83906f2..c93777b65 100644 --- a/Src/Zle/textobjects.c +++ b/Src/Zle/textobjects.c @@ -30,13 +30,6 @@ #include "zle.mdh" #include "textobjects.pro" -/* class of character: 0 is whitespace, 1 is word character, 2 is other */ -static int -wordclass(ZLE_CHAR_T x) -{ - return (ZC_iblank(x) ? 0 : ((ZC_ialnum(x) || (ZWC('_') == x)) ? 1 : 2)); -} - static int blankwordclass(ZLE_CHAR_T x) { -- cgit 1.4.1