comparison src/filepath.c @ 18261:8d09b7f53c71 v8.1.2125

patch 8.1.2125: fnamemodify() fails when repeating :e Commit: https://github.com/vim/vim/commit/b189295b72030f00c45c30d3daecf85d457221f8 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 8 23:26:50 2019 +0200 patch 8.1.2125: fnamemodify() fails when repeating :e Problem: Fnamemodify() fails when repeating :e. Solution: Do not go before the tail. (Rob Pilling, closes https://github.com/vim/vim/issues/5024)
author Bram Moolenaar <Bram@vim.org>
date Tue, 08 Oct 2019 23:30:05 +0200
parents c8a53c0daeed
children cbea1392c393
comparison
equal deleted inserted replaced
18260:395b4d97da2a 18261:8d09b7f53c71
561 else if (*fnamep <= tail) 561 else if (*fnamep <= tail)
562 *fnamelen = 0; 562 *fnamelen = 0;
563 } 563 }
564 else // :r 564 else // :r
565 { 565 {
566 if (s > tail) // remove one extension 566 char_u *limit = *fnamep;
567
568 if (limit < tail)
569 limit = tail;
570 if (s > limit) // remove one extension
567 *fnamelen = (int)(s - *fnamep); 571 *fnamelen = (int)(s - *fnamep);
568 } 572 }
569 *usedlen += 2; 573 *usedlen += 2;
570 } 574 }
571 575