summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-06-28 10:49:22 +0000
committervimboss <devnull@localhost>2007-06-28 10:49:22 +0000
commit6508e21d5966bf06a14dfe92eac3925af9684943 (patch)
treee77da2418e91cb1bf3a2f1af3061e7f230eeaf97
parentd3a3b81e20ccd63e9819d189d6795da2b5a54110 (diff)
downloadvim-6508e21d5966bf06a14dfe92eac3925af9684943.tar.gz
updated for version 7.1-014v7.1.014v7-1-014
-rw-r--r--src/edit.c2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/edit.c b/src/edit.c
index fccb13f9..61135416 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -7215,6 +7215,8 @@ in_cinkeys(keytyped, when, line_is_empty)
p = ml_get_curline();
if (cin_iscase(p) || cin_isscopedecl(p) || cin_islabel(30))
return TRUE;
+ /* Need to get the line again after cin_islabel(). */
+ p = ml_get_curline();
if (curwin->w_cursor.col > 2
&& p[curwin->w_cursor.col - 1] == ':'
&& p[curwin->w_cursor.col - 2] == ':')
diff --git a/src/version.c b/src/version.c
index dbd7f075..05d09caf 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 14,
+/**/
13,
/**/
12,