From: Bram Moolenaar Date: Thu, 3 Jan 2008 11:43:42 +0000 (+0000) Subject: updated for version 7.1-189 X-Git-Tag: v7.1.189 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=913626cedbcfda2763e8c5773ec0b8f5aad8486c;p=vim updated for version 7.1-189 --- diff --git a/src/misc1.c b/src/misc1.c index 99c90f76b..55c9bd589 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -222,10 +222,11 @@ set_indent(size, flags) *s++ = *p++; orig_char_len--; } + /* Skip over any additional white space (useful when newindent is less * than old) */ while (vim_iswhite(*p)) - (void)*p++; + ++p; } else @@ -3024,7 +3025,7 @@ ask_yesno(str, direct) if (direct) r = get_keystroke(); else - r = safe_vgetc(); + r = plain_vgetc(); if (r == Ctrl_C || r == ESC) r = 'n'; msg_putchar(r); /* show what you typed */ diff --git a/src/version.c b/src/version.c index 5e84c6605..4459e5fce 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 */ +/**/ + 189, /**/ 188, /**/