diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-12-05 21:50:01 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-12-05 21:50:01 +0100 |
commit | e38eab22c1fb950127f0307a9904de6d4561dc70 (patch) | |
tree | 3435d9a3e3654948067dd1a89ebacf333ba877f0 /src/usercmd.c | |
parent | 0d6f5d9740dbad1b0207f3ab257de806169dd905 (diff) | |
download | vim-git-e38eab22c1fb950127f0307a9904de6d4561dc70.tar.gz |
patch 8.1.2396: using old C style commentsv8.1.2396
Problem: Using old C style comments.
Solution: Use // comments where appropriate.
Diffstat (limited to 'src/usercmd.c')
-rw-r--r-- | src/usercmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usercmd.c b/src/usercmd.c index b48f157d6..5db6f48be 100644 --- a/src/usercmd.c +++ b/src/usercmd.c @@ -392,7 +392,7 @@ uc_list(char_u *name, size_t name_len) long a; garray_T *gap; - /* In cmdwin, the alternative buffer should be used. */ + // In cmdwin, the alternative buffer should be used. gap = #ifdef FEAT_CMDWIN (cmdwin_type != 0 && get_cmdline_type() == NUL) ? |