summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-30 19:44:38 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-30 19:44:38 +0100
commit9bf703d46a79fbffeb829246ea5ce385bddc4166 (patch)
tree6afff788b4fbd8fbf61557c47c24c26c975ea8ee /src/globals.h
parent20ebbeac461ffc2a5e5dbfbb0ba380b8854615bd (diff)
patch 8.1.2366: using old C style commentsv8.1.2366
Problem: Using old C style comments. Solution: Use // comments where appropriate.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/globals.h b/src/globals.h
index 84fe28bef1..e96800db09 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -853,9 +853,9 @@ EXTERN pos_T saved_cursor // w_cursor before formatting text.
EXTERN pos_T Insstart; // This is where the latest
// insert/append mode started.
-/* This is where the latest insert/append mode started. In contrast to
- * Insstart, this won't be reset by certain keys and is needed for
- * op_insert(), to detect correctly where inserting by the user started. */
+// This is where the latest insert/append mode started. In contrast to
+// Insstart, this won't be reset by certain keys and is needed for
+// op_insert(), to detect correctly where inserting by the user started.
EXTERN pos_T Insstart_orig;
/*
@@ -865,7 +865,7 @@ EXTERN int orig_line_count INIT(= 0); // Line count when "gR" started
EXTERN int vr_lines_changed INIT(= 0); // #Lines changed by "gR" so far
#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
-/* argument to SETJMP() for handling X IO errors */
+// argument to SETJMP() for handling X IO errors
EXTERN JMP_BUF x_jump_env;
#endif
@@ -1404,7 +1404,7 @@ EXTERN int term_is_xterm INIT(= FALSE); // xterm-like 'term'
#ifdef BACKSLASH_IN_FILENAME
EXTERN char psepc INIT(= '\\'); // normal path separator character
EXTERN char psepcN INIT(= '/'); // abnormal path separator character
-/* normal path separator string */
+// normal path separator string
EXTERN char pseps[2] INIT(= {'\\' COMMA 0});
#endif