diff --git a/src/getchar.c b/src/getchar.c index f840e0bd4..e623ce666 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -1960,10 +1960,13 @@ vgetorpeek(advance) c = Ctrl_C; flush_buffers(TRUE); /* flush all typeahead */ - /* Also record this character, it might be needed to - * get out of Insert mode. */ - *typebuf.tb_buf = c; - gotchars(typebuf.tb_buf, 1); + if (advance) + { + /* Also record this character, it might be needed to + * get out of Insert mode. */ + *typebuf.tb_buf = c; + gotchars(typebuf.tb_buf, 1); + } cmd_silent = FALSE; break; diff --git a/src/version.c b/src/version.c index 50dc26715..5aaccff3a 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 114, /**/ 113, /**/