diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-04-28 13:02:09 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-04-28 13:02:09 +0200 |
commit | 8d2d71d4bbd7f13817e7f42ce02b31c4a17ed66f (patch) | |
tree | d9e971cde37bc1c33f83b5d04bd65650843f480f /src/testdir/test3.ok | |
parent | f1fda2d6e591a5b5bb549e4ca30c9029c544eea9 (diff) | |
download | vim-git-8d2d71d4bbd7f13817e7f42ce02b31c4a17ed66f.tar.gz |
updated for version 7.3.164v7.3.164
Problem: C-indenting: a preprocessor statement confuses detection of a
function delcaration.
Solution: Ignore preprocessor lines. (Lech Lorens) Also recognize the style
to put a comma before the argument name.
Diffstat (limited to 'src/testdir/test3.ok')
-rw-r--r-- | src/testdir/test3.ok | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/testdir/test3.ok b/src/testdir/test3.ok index 8c015a338..4e2a64811 100644 --- a/src/testdir/test3.ok +++ b/src/testdir/test3.ok @@ -1183,3 +1183,24 @@ int main () foo; } + +void func(int a +#if defined(FOO) + , int b + , int c +#endif + ) +{ +} + + + void +func(int a +#if defined(FOO) + , int b + , int c +#endif + ) +{ +} + |