comparison src/main.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 57f585da8c45
children 06a137af96f8
comparison
equal deleted inserted replaced
26770:15ff3f2e0d58 26771:fc859aea8cec
245 start_dir = alloc(MAXPATHL); 245 start_dir = alloc(MAXPATHL);
246 if (start_dir != NULL) 246 if (start_dir != NULL)
247 mch_dirname(start_dir, MAXPATHL); 247 mch_dirname(start_dir, MAXPATHL);
248 // Temporarily add '(' and ')' to 'isfname'. These are valid 248 // Temporarily add '(' and ')' to 'isfname'. These are valid
249 // filename characters but are excluded from 'isfname' to make 249 // filename characters but are excluded from 'isfname' to make
250 // "gf" work on a file name in parenthesis (e.g.: see vim.h). 250 // "gf" work on a file name in parentheses (e.g.: see vim.h).
251 do_cmdline_cmd((char_u *)":set isf+=(,)"); 251 do_cmdline_cmd((char_u *)":set isf+=(,)");
252 alist_expand(NULL, 0); 252 alist_expand(NULL, 0);
253 do_cmdline_cmd((char_u *)":set isf&"); 253 do_cmdline_cmd((char_u *)":set isf&");
254 if (start_dir != NULL) 254 if (start_dir != NULL)
255 mch_chdir((char *)start_dir); 255 mch_chdir((char *)start_dir);