From fe59d196a05d89140df4f0960f59334dbb8ebc33 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Tue, 11 Jan 2011 20:12:18 +0000 Subject: 28611: remove unused special behaviour for vi mark 26 --- Src/Zle/zle_move.c | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'Src/Zle') diff --git a/Src/Zle/zle_move.c b/Src/Zle/zle_move.c index f15b114f5..925f9c29f 100644 --- a/Src/Zle/zle_move.c +++ b/Src/Zle/zle_move.c @@ -30,7 +30,7 @@ #include "zle.mdh" #include "zle_move.pro" -static int vimarkcs[27], vimarkline[27]; +static int vimarkcs[26], vimarkline[26]; #ifdef MULTIBYTE_SUPPORT /* @@ -803,16 +803,11 @@ int vigotomark(UNUSED(char **args)) { ZLE_INT_T ch; - LASTFULLCHAR_T lfc = LASTFULLCHAR; ch = getfullchar(0); - if (ch == lfc) - ch = 26; - else { - if (ch < ZWC('a') || ch > ZWC('z')) - return 1; - ch -= ZWC('a'); - } + if (ch < ZWC('a') || ch > ZWC('z')) + return 1; + ch -= ZWC('a'); if (!vimarkline[ch]) return 1; if (curhist != vimarkline[ch] && !zle_goto_hist(vimarkline[ch], 0, 0)) { -- cgit 1.4.1