File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3247,15 +3247,15 @@ get_real_state()
32473247#if defined(FEAT_MBYTE ) || defined(PROTO )
32483248/*
32493249 * Return TRUE if "p" points to just after a path separator.
3250- * Take care of multi-byte characters.
3250+ * Takes care of multi-byte characters.
32513251 * "b" must point to the start of the file name
32523252 */
32533253 int
32543254after_pathsep (b , p )
32553255 char_u * b ;
32563256 char_u * p ;
32573257{
3258- return vim_ispathsep (p [-1 ])
3258+ return p > b && vim_ispathsep (p [-1 ])
32593259 && (!has_mbyte || (* mb_head_off )(b , p - 1 ) == 0 );
32603260}
32613261#endif
Original file line number Diff line number Diff line change @@ -709,6 +709,8 @@ static char *(features[]) =
709709
710710static int included_patches [] =
711711{ /* Add new patch number below this line */
712+ /**/
713+ 242 ,
712714/**/
713715 241 ,
714716/**/
You can’t perform that action at this time.
0 commit comments