# HG changeset patch # User vimboss # Date 1183027762 0 # Node ID bacdeee78827acbae22a7626a93318ee1919c883 # Parent 82add1e7c154fbbd5926df49fd4afe768e6007db updated for version 7.1-014 diff --git a/src/edit.c b/src/edit.c --- 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 --- 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,