summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-03-23 18:22:46 +0100
committerBram Moolenaar <Bram@vim.org>2010-03-23 18:22:46 +0100
commitdfdf3c446f387b66b3d3391533ab7644a8508f9b (patch)
tree7404010c9af0489d8cfc1ac9fa63251984ce12ae
parent63fa526b50fffe510c26b336ee09e9ee5cf2ed5f (diff)
updated for version 7.2.411v7.2.411
Problem: When parsing 'cino' a comma isn't skipped properly. Solution: Skip the comma. (Lech Lorens)
-rw-r--r--src/misc1.c2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/misc1.c b/src/misc1.c
index f67f9c6a59..ffd0b831db 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -6270,6 +6270,8 @@ get_c_indent()
case 'l': ind_keep_case_label = n; break;
case '#': ind_hash_comment = n; break;
}
+ if (*options == ',')
+ ++options;
}
/* remember where the cursor was when we started */
diff --git a/src/version.c b/src/version.c
index 9cff4cea0c..ef9b5edb2a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -682,6 +682,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 411,
+/**/
410,
/**/
409,