commit | c667da5185ce5dce914d2006d62da2be0cedb384 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Nov 30 20:52:27 2019 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Nov 30 20:52:27 2019 +0100 |
tree | cd06b08e9fb7d701653850cd33524d3f1f5acaaf | |
parent | 71136db1bfbc67c2e55f8070cdf0a241c643e45b [diff] [blame] |
patch 8.1.2368: using old C style comments Problem: Using old C style comments. Solution: Use // comments where appropriate.
diff --git a/src/cindent.c b/src/cindent.c index c37682c..c7caed6 100644 --- a/src/cindent.c +++ b/src/cindent.c
@@ -1628,9 +1628,9 @@ * Ignore a '{' that is in a comment, makes indenting the next three lines * work. */ -/* foo() */ -/* { */ -/* } */ +// foo() +// { +// } static pos_T * find_start_brace(void) // XXX