Problem: C-indent doesn't handle colon in string correctly.
Solution: Skip the string. (Lech Lorens)
continue;
}
- if (s[0] == ':')
+ if (s[0] == '"')
+ s = skip_string(s) + 1;
+ else if (s[0] == ':')
{
if (s[1] == ':')
{
printf("Foo!\n");
}
+STARTTEST
+:set cino&
+2kdd=][
+ENDTEST
+
+void func(void)
+{
+ cout << "a"
+ << "b"
+ << ") :"
+ << "c";
+}
+
STARTTEST
:g/^STARTTEST/.,/^ENDTEST/d
:1;/start of AUTO/,$wq! test.out
printf("Foo!\n");
}
+
+void func(void)
+{
+ cout << "a"
+ << "b"
+ << ") :"
+ << "c";
+}
+
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 179,
/**/
178,
/**/