comparison src/findfile.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 22896e358a90
children aa65d1808bd0
comparison
equal deleted inserted replaced
26770:15ff3f2e0d58 26771:fc859aea8cec
747 { 747 {
748 #endif 748 #endif
749 // downward search loop 749 // downward search loop
750 for (;;) 750 for (;;)
751 { 751 {
752 // check if user user wants to stop the search 752 // check if user wants to stop the search
753 ui_breakcheck(); 753 ui_breakcheck();
754 if (got_int) 754 if (got_int)
755 break; 755 break;
756 756
757 // get directory to work on from stack 757 // get directory to work on from stack
1374 #ifdef UNIX 1374 #ifdef UNIX
1375 stat_T st; 1375 stat_T st;
1376 int url = FALSE; 1376 int url = FALSE;
1377 #endif 1377 #endif
1378 1378
1379 // For an URL we only compare the name, otherwise we compare the 1379 // For a URL we only compare the name, otherwise we compare the
1380 // device/inode (unix) or the full path name (not Unix). 1380 // device/inode (unix) or the full path name (not Unix).
1381 if (path_with_url(fname)) 1381 if (path_with_url(fname))
1382 { 1382 {
1383 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1); 1383 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
1384 #ifdef UNIX 1384 #ifdef UNIX