diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-12 15:36:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-12 15:36:38 +0100 |
commit | f8c53d3d268fc67a29c8c1a4e76fae85762e11b5 (patch) | |
tree | bff53e0854e8031f9df4866456922991dc236146 /src/testdir/test3.in | |
parent | 80eaddd3a0bc47cb14168964678420cfe03a2502 (diff) | |
download | vim-git-f8c53d3d268fc67a29c8c1a4e76fae85762e11b5.tar.gz |
patch 8.0.1291: C indent wrong when * immediately follows commentv8.0.1291
Problem: C indent wrong when * immediately follows comment. (John Bowler)
Solution: Do not see "/*" after "*" as a comment start. (closes #2321)
Diffstat (limited to 'src/testdir/test3.in')
-rw-r--r-- | src/testdir/test3.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/testdir/test3.in b/src/testdir/test3.in index c78a66ec1..646fbb35c 100644 --- a/src/testdir/test3.in +++ b/src/testdir/test3.in @@ -2339,6 +2339,16 @@ CCC /* end of define */ STARTTEST +:set cin cino& +/a = second +ox +ENDTEST + +{ + a = second/*bug*/*line; +} + +STARTTEST :g/^STARTTEST/.,/^ENDTEST/d :1;/start of AUTO/,$wq! test.out ENDTEST |