comparison src/os_dos.h @ 18753:6e3dc2d630c2 v8.1.2366

patch 8.1.2366: using old C style comments Commit: https://github.com/vim/vim/commit/9bf703d46a79fbffeb829246ea5ce385bddc4166 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 30 19:44:38 2019 +0100 patch 8.1.2366: using old C style comments Problem: Using old C style comments. Solution: Use // comments where appropriate.
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Nov 2019 19:45:03 +0100
parents 65c29bd4548b
children 8f0da069a311
comparison
equal deleted inserted replaced
18752:9ec3c9cb4533 18753:6e3dc2d630c2
110 #ifndef SYNTAX_FNAME 110 #ifndef SYNTAX_FNAME
111 # define SYNTAX_FNAME "$VIMRUNTIME\\syntax\\%s.vim" 111 # define SYNTAX_FNAME "$VIMRUNTIME\\syntax\\%s.vim"
112 #endif 112 #endif
113 113
114 #ifndef DFLT_BDIR 114 #ifndef DFLT_BDIR
115 # define DFLT_BDIR ".,$TEMP,c:\\tmp,c:\\temp" /* default for 'backupdir' */ 115 # define DFLT_BDIR ".,$TEMP,c:\\tmp,c:\\temp" // default for 'backupdir'
116 #endif 116 #endif
117 117
118 #ifndef DFLT_VDIR 118 #ifndef DFLT_VDIR
119 # define DFLT_VDIR "$VIM/vimfiles/view" /* default for 'viewdir' */ 119 # define DFLT_VDIR "$VIM/vimfiles/view" // default for 'viewdir'
120 #endif 120 #endif
121 121
122 #ifndef DFLT_DIR 122 #ifndef DFLT_DIR
123 # define DFLT_DIR ".,$TEMP,c:\\tmp,c:\\temp" /* default for 'directory' */ 123 # define DFLT_DIR ".,$TEMP,c:\\tmp,c:\\temp" // default for 'directory'
124 #endif 124 #endif
125 125
126 #define DFLT_ERRORFILE "errors.err" 126 #define DFLT_ERRORFILE "errors.err"
127 #define DFLT_RUNTIMEPATH "$HOME/vimfiles,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,$HOME/vimfiles/after" 127 #define DFLT_RUNTIMEPATH "$HOME/vimfiles,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,$HOME/vimfiles/after"
128 #define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after" 128 #define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after"
129 129
130 #define CASE_INSENSITIVE_FILENAME /* ignore case when comparing file names */ 130 #define CASE_INSENSITIVE_FILENAME // ignore case when comparing file names
131 #define SPACE_IN_FILENAME 131 #define SPACE_IN_FILENAME
132 #define BACKSLASH_IN_FILENAME 132 #define BACKSLASH_IN_FILENAME
133 #define USE_CRNL /* lines end in CR-NL instead of NL */ 133 #define USE_CRNL // lines end in CR-NL instead of NL
134 #define HAVE_DUP /* have dup() */ 134 #define HAVE_DUP // have dup()
135 #define HAVE_ST_MODE /* have stat.st_mode */ 135 #define HAVE_ST_MODE // have stat.st_mode