diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-04 15:54:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-04 15:54:55 +0200 |
commit | b005cd80cfda591be95146024d9b97eef383500f (patch) | |
tree | ce7d5ac25d5c8e3442828130c180e04820565d29 /src/if_cscope.c | |
parent | 1e1d30048e722906a13665bd6c3c24c87eb2fe25 (diff) | |
download | vim-git-b005cd80cfda591be95146024d9b97eef383500f.tar.gz |
patch 8.1.1979: code for handling file names is spread outv8.1.1979
Problem: Code for handling file names is spread out.
Solution: Move code to new filepath.c file. Graduate FEAT_MODIFY_FNAME.
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r-- | src/if_cscope.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c index 8e3a9bfa1..2cc25b743 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -492,18 +492,15 @@ cs_add_common( char *fname2 = NULL; char *ppath = NULL; int i; -#ifdef FEAT_MODIFY_FNAME int len; int usedlen = 0; char_u *fbuf = NULL; -#endif /* get the filename (arg1), expand it, and try to stat it */ if ((fname = alloc(MAXPATHL + 1)) == NULL) goto add_err; expand_env((char_u *)arg1, (char_u *)fname, MAXPATHL); -#ifdef FEAT_MODIFY_FNAME len = (int)STRLEN(fname); fbuf = (char_u *)fname; (void)modify_fname((char_u *)":p", FALSE, &usedlen, @@ -512,7 +509,7 @@ cs_add_common( goto add_err; fname = (char *)vim_strnsave((char_u *)fname, len); vim_free(fbuf); -#endif + ret = mch_stat(fname, &statbuf); if (ret < 0) { |