summaryrefslogtreecommitdiff
path: root/Src/Zle/zle_hist.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-05-04 18:30:02 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-05-04 18:30:02 +0000
commit1424e923b1676b04249d1a853f4360b8956fe9e9 (patch)
treedcce54397812f3de8cc781a71dfada00264b8622 /Src/Zle/zle_hist.c
parenta9ad660bd39cc2cf07ce4ada2af08fb1ded4f7ac (diff)
downloadzsh-1424e923b1676b04249d1a853f4360b8956fe9e9.tar.gz
zsh-1424e923b1676b04249d1a853f4360b8956fe9e9.zip
24915: some more fix-ups for combining characters
Diffstat (limited to 'Src/Zle/zle_hist.c')
-rw-r--r--Src/Zle/zle_hist.c9
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;
}