comparison src/ex_cmds.c @ 301:006e9c8a6a8a v7.0079

updated for version 7.0079
author vimboss
date Sat, 04 Jun 2005 22:06:24 +0000
parents 1c1cbdc42f75
children a0451524244d
comparison
equal deleted inserted replaced
300:86cd0a77d2ae 301:006e9c8a6a8a
1811 * Check if the new viminfo file can be written to. 1811 * Check if the new viminfo file can be written to.
1812 */ 1812 */
1813 if (fp_out == NULL) 1813 if (fp_out == NULL)
1814 { 1814 {
1815 EMSG2(_("E138: Can't write viminfo file %s!"), 1815 EMSG2(_("E138: Can't write viminfo file %s!"),
1816 (fp_in == NULL || tempname == NUL) ? fname : tempname); 1816 (fp_in == NULL || tempname == NULL) ? fname : tempname);
1817 if (fp_in != NULL) 1817 if (fp_in != NULL)
1818 fclose(fp_in); 1818 fclose(fp_in);
1819 goto end; 1819 goto end;
1820 } 1820 }
1821 1821