commit | dfdf3c446f387b66b3d3391533ab7644a8508f9b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Mar 23 18:22:46 2010 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Mar 23 18:22:46 2010 +0100 |
tree | 7404010c9af0489d8cfc1ac9fa63251984ce12ae | |
parent | 63fa526b50fffe510c26b336ee09e9ee5cf2ed5f [diff] [blame] |
updated for version 7.2.411 Problem: When parsing 'cino' a comma isn't skipped properly. Solution: Skip the comma. (Lech Lorens)
diff --git a/src/misc1.c b/src/misc1.c index f67f9c6..ffd0b83 100644 --- a/src/misc1.c +++ b/src/misc1.c
@@ -6270,6 +6270,8 @@ 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 */