summaryrefslogtreecommitdiff
path: root/src/testdir/test3.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-11-12 15:36:38 +0100
committerBram Moolenaar <Bram@vim.org>2017-11-12 15:36:38 +0100
commitf8c53d3d268fc67a29c8c1a4e76fae85762e11b5 (patch)
treebff53e0854e8031f9df4866456922991dc236146 /src/testdir/test3.in
parent80eaddd3a0bc47cb14168964678420cfe03a2502 (diff)
downloadvim-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.in10
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