]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.684 v7.4.684
authorBram Moolenaar <Bram@vim.org>
Tue, 31 Mar 2015 11:33:08 +0000 (13:33 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 31 Mar 2015 11:33:08 +0000 (13:33 +0200)
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.

13 files changed:
src/diff.c
src/eval.c
src/ex_cmds.c
src/fileio.c
src/hardcopy.c
src/if_cscope.c
src/memline.c
src/misc1.c
src/os_unix.c
src/proto/fileio.pro
src/quickfix.c
src/spell.c
src/version.c

index caee6e5a530c2449d57e019eebc954e6c729c046..aec54c2b05f92e7021c570196c0a7e30155bb4eb 100644 (file)
@@ -688,9 +688,9 @@ ex_diffupdate(eap)
        return;
 
     /* We need three temp file names. */
-    tmp_orig = vim_tempname('o');
-    tmp_new = vim_tempname('n');
-    tmp_diff = vim_tempname('d');
+    tmp_orig = vim_tempname('o', TRUE);
+    tmp_new = vim_tempname('n', TRUE);
+    tmp_diff = vim_tempname('d', TRUE);
     if (tmp_orig == NULL || tmp_new == NULL || tmp_diff == NULL)
        goto theend;
 
@@ -920,8 +920,8 @@ ex_diffpatch(eap)
 #endif
 
     /* We need two temp file names. */
-    tmp_orig = vim_tempname('o');
-    tmp_new = vim_tempname('n');
+    tmp_orig = vim_tempname('o', FALSE);
+    tmp_new = vim_tempname('n', FALSE);
     if (tmp_orig == NULL || tmp_new == NULL)
        goto theend;
 
index ebd7e379e897ba22cc4a1ff33db15152b667ca33..5b06a30a52a3a5269d9c0e7fc824d031bb854ecc 100644 (file)
@@ -18775,7 +18775,7 @@ get_cmd_output_as_rettv(argvars, rettv, retlist)
         * Write the string to a temp file, to be used for input of the shell
         * command.
         */
-       if ((infile = vim_tempname('i')) == NULL)
+       if ((infile = vim_tempname('i', TRUE)) == NULL)
        {
            EMSG(_(e_notmp));
            goto errret;
@@ -19134,7 +19134,7 @@ f_tempname(argvars, rettv)
     static int x = 'A';
 
     rettv->v_type = VAR_STRING;
-    rettv->vval.v_string = vim_tempname(x);
+    rettv->vval.v_string = vim_tempname(x, FALSE);
 
     /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
      * names.  Skip 'I' and 'O', they are used for shell redirection. */
index ef0ec1ffeac3c59b5fb93b102d7fd48c761b189f..978d516f7d800c5f20d72d9b1e40e58a1f1295d0 100644 (file)
@@ -1158,8 +1158,8 @@ do_filter(line1, line2, eap, cmd, do_in, do_out)
     }
     else
 #endif
-       if ((do_in && (itmp = vim_tempname('i')) == NULL)
-               || (do_out && (otmp = vim_tempname('o')) == NULL))
+       if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
+               || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
        {
            EMSG(_(e_notmp));
            goto filterend;
@@ -1963,7 +1963,7 @@ write_viminfo(file, forceit)
            if (fp_out == NULL)
            {
                vim_free(tempname);
-               if ((tempname = vim_tempname('o')) != NULL)
+               if ((tempname = vim_tempname('o', TRUE)) != NULL)
                    fp_out = mch_fopen((char *)tempname, WRITEBIN);
            }
 
index 388446a482749a757f3dd45787ceef66260ad078..9965920c5c9984e320b34590f8d1f12cd11b6e47 100644 (file)
@@ -2872,7 +2872,7 @@ readfile_charconvert(fname, fenc, fdp)
     char_u     *tmpname;
     char_u     *errmsg = NULL;
 
-    tmpname = vim_tempname('r');
+    tmpname = vim_tempname('r', FALSE);
     if (tmpname == NULL)
        errmsg = (char_u *)_("Can't find temp file for conversion");
     else
@@ -4288,7 +4288,7 @@ buf_write(buf, fname, sfname, start, end, eap, append, forceit,
             */
            if (*p_ccv != NUL)
            {
-               wfname = vim_tempname('w');
+               wfname = vim_tempname('w', FALSE);
                if (wfname == NULL)     /* Can't write without a tempfile! */
                {
                    errmsg = (char_u *)_("E214: Can't find temp file for writing");
@@ -7344,14 +7344,16 @@ vim_settempdir(tempdir)
 /*
  * vim_tempname(): Return a unique name that can be used for a temp file.
  *
- * The temp file is NOT created.
+ * The temp file is NOT garanteed to be created.  If "keep" is FALSE it is
+ * garanteed to NOT be created.
  *
  * The returned pointer is to allocated memory.
  * The returned pointer is NULL if no valid name was found.
  */
     char_u  *
-vim_tempname(extra_char)
+vim_tempname(extra_char, keep)
     int            extra_char UNUSED;  /* char to use in the name instead of '?' */
+    int            keep UNUSED;
 {
 #ifdef USE_TMPNAM
     char_u     itmp[L_tmpnam]; /* use tmpnam() */
@@ -7487,8 +7489,9 @@ vim_tempname(extra_char)
     buf4[2] = extra_char;   /* make it "VIa", "VIb", etc. */
     if (GetTempFileName(szTempFile, buf4, 0, itmp) == 0)
        return NULL;
-    /* GetTempFileName() will create the file, we don't want that */
-    (void)DeleteFile(itmp);
+    if (!keep)
+       /* GetTempFileName() will create the file, we don't want that */
+       (void)DeleteFile(itmp);
 
     /* Backslashes in a temp file name cause problems when filtering with
      * "sh".  NOTE: This also checks 'shellcmdflag' to help those people who
index 1e795e6b57384a614701366ed41a08c4522aa646..95a367d496909de57373735fcc7c6ef2bb1e7311 100644 (file)
@@ -2751,7 +2751,7 @@ mch_print_init(psettings, jobname, forceit)
     /* If the user didn't specify a file name, use a temp file. */
     if (psettings->outfile == NULL)
     {
-       prt_ps_file_name = vim_tempname('p');
+       prt_ps_file_name = vim_tempname('p', TRUE);
        if (prt_ps_file_name == NULL)
        {
            EMSG(_(e_notmp));
index f72a96b9ce96bfa32bcce47300ab15f2cb8dd343..2b4ba08132ab0ff239c4f12ed8c167a4de8578c1 100644 (file)
@@ -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;
 
index d62697d6b41cfa2d0baad5344d783b53d3e92680..730496c18877adc099cedb3a55c3e5a208ab7cea 100644 (file)
@@ -757,7 +757,7 @@ ml_open_file(buf)
     /* For a spell buffer use a temp file name. */
     if (buf->b_spell)
     {
-       fname = vim_tempname('s');
+       fname = vim_tempname('s', FALSE);
        if (fname != NULL)
            (void)mf_open_file(mfp, fname);     /* consumes fname! */
        buf->b_may_swap = FALSE;
index bd1fe255b1d4528928b2f4ae3fcb06e27cd5fd71..5a345131954365ac7ae3376db587e401989489c9 100644 (file)
@@ -11049,7 +11049,7 @@ get_cmd_output(cmd, infile, flags, ret_len)
        return NULL;
 
     /* get a name for the temp file */
-    if ((tempname = vim_tempname('o')) == NULL)
+    if ((tempname = vim_tempname('o', FALSE)) == NULL)
     {
        EMSG(_(e_notmp));
        return NULL;
index df045a50f697c382fa570fbd1c4fae1d0de98f40..57c013f509908ae7258bb5e3fbd9e3f81a27200f 100644 (file)
@@ -5838,7 +5838,7 @@ mch_expand_wildcards(num_pat, pat, num_file, file, flags)
     /*
      * get a name for the temp file
      */
-    if ((tempname = vim_tempname('o')) == NULL)
+    if ((tempname = vim_tempname('o', FALSE)) == NULL)
     {
        EMSG(_(e_notmp));
        return FAIL;
index 45e7b387277a61a1c2ef5a0601c4db647247d514..32d7bce3182ac752a82308c05b6ae1a06826395b 100644 (file)
@@ -23,7 +23,7 @@ void buf_reload __ARGS((buf_T *buf, int orig_mode));
 void buf_store_time __ARGS((buf_T *buf, struct stat *st, char_u *fname));
 void write_lnum_adjust __ARGS((linenr_T offset));
 void vim_deltempdir __ARGS((void));
-char_u *vim_tempname __ARGS((int extra_char));
+char_u *vim_tempname __ARGS((int extra_char, int keep));
 void forward_slash __ARGS((char_u *fname));
 void aubuflocal_remove __ARGS((buf_T *buf));
 int au_has_group __ARGS((char_u *name));
index abb4a6ecf3a1042da0aa407db2a630b6624a7651..186520a9fb08f6826e57424dbc6b2b59f8ea58a8 100644 (file)
@@ -2945,7 +2945,7 @@ get_mef_name()
 
     if (*p_mef == NUL)
     {
-       name = vim_tempname('e');
+       name = vim_tempname('e', FALSE);
        if (name == NULL)
            EMSG(_(e_notmp));
        return name;
index 31bfa952f5026a56d463f0c4f597ddc9a60e0d2a..80a7d18fe70b1c5e86954de78df46e8d53455c6f 100644 (file)
@@ -9426,7 +9426,7 @@ spell_add_word(word, len, bad, idx, undo)
     {
        if (int_wordlist == NULL)
        {
-           int_wordlist = vim_tempname('s');
+           int_wordlist = vim_tempname('s', FALSE);
            if (int_wordlist == NULL)
                return;
        }
index a4729caf81002561fd55196b08c5c60fe8023002..f4ed01a647d6ee66e7996660eaa974d53fc70f37 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    684,
 /**/
     683,
 /**/