diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-12-21 18:47:26 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-12-21 18:47:26 +0100 |
commit | aa2f0ee639d3b59e4402261ebee27bf545a62d8b (patch) | |
tree | b78d056e5a721688755ab5c0ece01796b626227d /src/insexpand.c | |
parent | 85a2002adb0eda9a9309c2fab4a79edaa91fb834 (diff) | |
download | vim-git-aa2f0ee639d3b59e4402261ebee27bf545a62d8b.tar.gz |
patch 8.2.0027: still some /* */ commentsv8.2.0027
Problem: Still some /* */ comments.
Solution: Convert to // comments.
Diffstat (limited to 'src/insexpand.c')
-rw-r--r-- | src/insexpand.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/insexpand.c b/src/insexpand.c index ce2cc72b7..1cada4fd1 100644 --- a/src/insexpand.c +++ b/src/insexpand.c @@ -20,7 +20,7 @@ */ # define CTRL_X_WANT_IDENT 0x100 -# define CTRL_X_NORMAL 0 /* CTRL-N CTRL-P completion, default */ +# define CTRL_X_NORMAL 0 // CTRL-N CTRL-P completion, default # define CTRL_X_NOT_DEFINED_YET 1 # define CTRL_X_SCROLL 2 # define CTRL_X_WHOLE_LINE 3 @@ -35,8 +35,8 @@ # define CTRL_X_FUNCTION 12 # define CTRL_X_OMNI 13 # define CTRL_X_SPELL 14 -# define CTRL_X_LOCAL_MSG 15 /* only used in "ctrl_x_msgs" */ -# define CTRL_X_EVAL 16 /* for builtin function complete() */ +# define CTRL_X_LOCAL_MSG 15 // only used in "ctrl_x_msgs" +# define CTRL_X_EVAL 16 // for builtin function complete() # define CTRL_X_MSG(i) ctrl_x_msgs[(i) & ~CTRL_X_WANT_IDENT] |