diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-03-31 13:33:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-03-31 13:33:08 +0200 |
commit | e5c421cfd70a4d864faa0fac4e9f2dd6cdf5881d (patch) | |
tree | 77b845e567cd28c87bf4e9226384cccf04ab645b /src/if_cscope.c | |
parent | 1ca2e361a869c58a775b5fabb2aaf4e2675ea7ba (diff) | |
download | vim-git-e5c421cfd70a4d864faa0fac4e9f2dd6cdf5881d.tar.gz |
updated for version 7.4.684v7.4.684
Problem: When starting several Vim instances in diff mode, the temp files
used may not be unique. (Issue 353)
Solution: Add an argument to vim_tempname() to keep the file.
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r-- | src/if_cscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c index f72a96b9c..2b4ba0813 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -1269,7 +1269,7 @@ cs_find_common(opt, pat, forceit, verbose, use_ll, cmdline) { /* fill error list */ FILE *f; - char_u *tmp = vim_tempname('c'); + char_u *tmp = vim_tempname('c', TRUE); qf_info_T *qi = NULL; win_T *wp = NULL; |