summaryrefslogtreecommitdiffstats
path: root/src/cindent.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-30 20:52:27 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-30 20:52:27 +0100
commitc667da5185ce5dce914d2006d62da2be0cedb384 (patch)
treecd06b08e9fb7d701653850cd33524d3f1f5acaaf /src/cindent.c
parent71136db1bfbc67c2e55f8070cdf0a241c643e45b (diff)
patch 8.1.2368: using old C style commentsv8.1.2368
Problem: Using old C style comments. Solution: Use // comments where appropriate.
Diffstat (limited to 'src/cindent.c')
-rw-r--r--src/cindent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cindent.c b/src/cindent.c
index c37682c396..c7caed68f1 100644
--- a/src/cindent.c
+++ b/src/cindent.c
@@ -1628,9 +1628,9 @@ get_baseclass_amount(int col)
* Ignore a '{' that is in a comment, makes indenting the next three lines
* work.
*/
-/* foo() */
-/* { */
-/* } */
+// foo()
+// {
+// }
static pos_T *
find_start_brace(void) // XXX