patch 8.2.0027: still some /* */ comments
Problem: Still some /* */ comments.
Solution: Convert to // comments.
diff --git a/src/insexpand.c b/src/insexpand.c
index ce2cc72..1cada4f 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]