diff options
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 6c1c743a00..22581ed98b 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1107,14 +1107,14 @@ if has("quickfix") endif -if has("msdos") || has("os2") || has("win16") || has("win32") || has("osfiletype") +if has("msdos") || has("win16") || has("win32") || has("osfiletype") call <SID>Header("system specific") if has("osfiletype") call append("$", "osfiletype\tOS-specific information about the type of file") call append("$", "\t(local to buffer)") call <SID>OptionL("oft") endif - if has("msdos") || has("os2") || has("win16") || has("win32") + if has("msdos") || has("win16") || has("win32") call append("$", "shellslash\tuse forward slashes in file names; for Unix-like shells") call <SID>BinOptionG("ssl", &ssl) endif |