commit | 4ae06c1fa5973496deb74ef06dd116843bf0b647 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue May 10 11:39:19 2011 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue May 10 11:39:19 2011 +0200 |
tree | ee4daefee496c8a6e79bbcd8d88b00e9aaaa5d6a | |
parent | 3c9c99cb2c7839b96101ba0f41e93f8991adf531 [diff] [blame] |
updated for version 7.3.178 Problem: C-indent doesn't handle code right after { correctly. Solution: Fix detecting unterminated line. (Lech Lorens)
diff --git a/src/testdir/test3.ok b/src/testdir/test3.ok index 4e2a648..3764453 100644 --- a/src/testdir/test3.ok +++ b/src/testdir/test3.ok
@@ -1204,3 +1204,15 @@ { } + +void func(void) +{ + if(x==y) + if(y==z) + foo=1; + else { bar=1; + baz=2; + } + printf("Foo!\n"); +} +