comparison src/os_win32.c @ 26771:fc859aea8cec v8.2.3914

patch 8.2.3914: various spelling mistakes in comments Commit: https://github.com/vim/vim/commit/af4a61a85d6e8cacc35324f266934bc463a21673 Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Mon Dec 27 17:21:41 2021 +0000 patch 8.2.3914: various spelling mistakes in comments Problem: Various spelling mistakes in comments. Solution: Fix the mistakes. (Dominique Pell?, closes https://github.com/vim/vim/issues/9416)
author Bram Moolenaar <Bram@vim.org>
date Mon, 27 Dec 2021 18:30:05 +0100
parents a2e6da79274d
children 06a137af96f8
comparison
equal deleted inserted replaced
26770:15ff3f2e0d58 26771:fc859aea8cec
2185 p = e; 2185 p = e;
2186 } 2186 }
2187 } 2187 }
2188 } 2188 }
2189 2189
2190 // Prepend single "." to pathext, it's means no extension added. 2190 // Prepend single "." to pathext, it means no extension added.
2191 if (pathext == NULL) 2191 if (pathext == NULL)
2192 pathext = (char_u *)"."; 2192 pathext = (char_u *)".";
2193 else if (noext == TRUE) 2193 else if (noext == TRUE)
2194 { 2194 {
2195 if (pathextbuf == NULL) 2195 if (pathextbuf == NULL)
7748 if (!used_file_literal) 7748 if (!used_file_literal)
7749 { 7749 {
7750 // Now expand wildcards in the arguments. 7750 // Now expand wildcards in the arguments.
7751 // Temporarily add '(' and ')' to 'isfname'. These are valid 7751 // Temporarily add '(' and ')' to 'isfname'. These are valid
7752 // filename characters but are excluded from 'isfname' to make 7752 // filename characters but are excluded from 'isfname' to make
7753 // "gf" work on a file name in parenthesis (e.g.: see vim.h). 7753 // "gf" work on a file name in parentheses (e.g.: see vim.h).
7754 // Also, unset wildignore to not be influenced by this option. 7754 // Also, unset wildignore to not be influenced by this option.
7755 // The arguments specified in command-line should be kept even if 7755 // The arguments specified in command-line should be kept even if
7756 // encoding options were changed. 7756 // encoding options were changed.
7757 // Use :legacy so that it also works when in Vim9 script. 7757 // Use :legacy so that it also works when in Vim9 script.
7758 do_cmdline_cmd((char_u *)":legacy let g:SaVe_ISF = &isf|set isf+=(,)"); 7758 do_cmdline_cmd((char_u *)":legacy let g:SaVe_ISF = &isf|set isf+=(,)");