diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-12-05 21:10:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-12-05 21:10:38 +0100 |
commit | 63d9e730f726341bf41ee4f4b829253cb9879110 (patch) | |
tree | 02d6ed210385b78f06d7df1e30ede7d48f718600 /src/sign.c | |
parent | 0f8737355d291679659579a48db1861b88970293 (diff) | |
download | vim-git-63d9e730f726341bf41ee4f4b829253cb9879110.tar.gz |
patch 8.1.2394: using old C style commentsv8.1.2394
Problem: Using old C style comments.
Solution: Use // comments where appropriate.
Diffstat (limited to 'src/sign.c')
-rw-r--r-- | src/sign.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sign.c b/src/sign.c index 71f21b0c7..935ec3c74 100644 --- a/src/sign.c +++ b/src/sign.c @@ -701,8 +701,8 @@ buf_signcount(buf_T *buf, linenr_T lnum) return count; } -# endif /* FEAT_SIGN_ICONS */ -# endif /* FEAT_NETBEANS_INTG */ +# endif // FEAT_SIGN_ICONS +# endif // FEAT_NETBEANS_INTG /* * Delete signs in group 'group' in buffer "buf". If 'group' is '*', then @@ -2744,4 +2744,4 @@ f_sign_unplacelist(typval_T *argvars, typval_T *rettv) } } -#endif /* FEAT_SIGNS */ +#endif // FEAT_SIGNS |