diff options
Diffstat (limited to 'Src/Zle/zle_hist.c')
-rw-r--r-- | Src/Zle/zle_hist.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Src/Zle/zle_hist.c b/Src/Zle/zle_hist.c index c69f8539a..0a4ead788 100644 --- a/Src/Zle/zle_hist.c +++ b/Src/Zle/zle_hist.c @@ -247,6 +247,11 @@ upline(void) if (zlecs > findbol() && invicmdmode()) DECCS(); } +#ifdef MULTIBYTE_SUPPORT + else + CCRIGHT(); +#endif + } return n; } @@ -331,6 +336,10 @@ downline(void) if (zlecs > findbol() && invicmdmode()) DECCS(); } +#ifdef MULTIBYTE_SUPPORT + else + CCRIGHT(); +#endif } return n; } |