diff options
| author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2017-12-18 12:48:25 +0900 |
|---|---|---|
| committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2017-12-18 12:48:25 +0900 |
| commit | 5f33a93afb4da354ce81a564805826995550d275 (patch) | |
| tree | 9fb430de266b7b6080410dc1affbe1fb3668a80a /Src/Zle/textobjects.c | |
| parent | 42123 (tweaked): take account of Dash in function names. (diff) | |
| download | zsh-5f33a93afb4da354ce81a564805826995550d275.tar zsh-5f33a93afb4da354ce81a564805826995550d275.tar.gz zsh-5f33a93afb4da354ce81a564805826995550d275.tar.bz2 zsh-5f33a93afb4da354ce81a564805826995550d275.tar.lz zsh-5f33a93afb4da354ce81a564805826995550d275.tar.xz zsh-5f33a93afb4da354ce81a564805826995550d275.tar.zst zsh-5f33a93afb4da354ce81a564805826995550d275.zip | |
42116: multibyte support for ZLE vi-mode word motion
Diffstat (limited to 'Src/Zle/textobjects.c')
| -rw-r--r-- | Src/Zle/textobjects.c | 7 |
1 files changed, 0 insertions, 7 deletions
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) { |
