about summary refs log tree commit diff
path: root/Src/Zle/zle_hist.c
diff options
context:
space:
mode:
authorPeter Stephenson <p.w.stephenson@ntlworld.com>2015-09-11 21:40:45 +0100
committerPeter Stephenson <p.w.stephenson@ntlworld.com>2015-09-11 21:40:45 +0100
commite1c0a947cc845c71dd844db44016d07922cfcefa (patch)
treef952b7ac97712807e1d2b696987a00afdaf7ddf8 /Src/Zle/zle_hist.c
parent560a23033d2d0e029bbbcda0366053d8d87a37d9 (diff)
downloadzsh-e1c0a947cc845c71dd844db44016d07922cfcefa.tar.gz
zsh-e1c0a947cc845c71dd844db44016d07922cfcefa.tar.xz
zsh-e1c0a947cc845c71dd844db44016d07922cfcefa.zip
Read full multibyte string early for self-insert
Diffstat (limited to 'Src/Zle/zle_hist.c')
-rw-r--r--Src/Zle/zle_hist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Zle/zle_hist.c b/Src/Zle/zle_hist.c
index c61b4ef0e..0cff0391a 100644
--- a/Src/Zle/zle_hist.c
+++ b/Src/Zle/zle_hist.c
@@ -1643,7 +1643,7 @@ doisearch(char **args, int dir, int pattern)
 	    } else if (cmd == Th(z_selfinsert)) {
 #ifdef MULTIBYTE_SUPPORT
 		if (!lastchar_wide_valid)
-		    if (getrestchar(lastchar) == WEOF) {
+		    if (getrestchar(lastchar, NULL, NULL) == WEOF) {
 			handlefeep(zlenoargs);
 			continue;
 		    }
@@ -1877,7 +1877,7 @@ getvisrchstr(void)
 	    } else {
 #ifdef MULTIBYTE_SUPPORT
 		if (!lastchar_wide_valid)
-		    if (getrestchar(lastchar) == WEOF) {
+		    if (getrestchar(lastchar, NULL, NULL) == WEOF) {
 			handlefeep(zlenoargs);
 			continue;
 		    }