diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-30 19:44:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-30 19:44:38 +0100 |
commit | 9bf703d46a79fbffeb829246ea5ce385bddc4166 (patch) | |
tree | 6afff788b4fbd8fbf61557c47c24c26c975ea8ee /src/globals.h | |
parent | 20ebbeac461ffc2a5e5dbfbb0ba380b8854615bd (diff) | |
download | vim-git-9bf703d46a79fbffeb829246ea5ce385bddc4166.tar.gz |
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.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/globals.h b/src/globals.h index 84fe28bef..e96800db0 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 |