]> git.pld-linux.org Git - packages/vim.git/blame - 6.3.007
- up to 6.4.001 (but some todo issues left)
[packages/vim.git] / 6.3.007
CommitLineData
2b73553d
AM
1To: vim-dev@vim.org
2Subject: Patch 6.3.007
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 6.3.007
11Problem: When there is a buffer with 'buftype' set to "nofile" and using a
12 ":cd" command, the swap file is not deleted when exiting.
13Solution: Use the full path of the swap file also for "nofile" buffers.
14Files: src/fileio.c
15
16
17*** ../vim-6.3.006/src/fileio.c Wed Jun 9 14:56:28 2004
18--- src/fileio.c Sun Jun 20 13:53:29 2004
19***************
20*** 5290,5297 ****
21 }
22 if (p == NULL || buf->b_fname == NULL)
23 buf->b_fname = buf->b_ffname;
24- mf_fullname(buf->b_ml.ml_mfp);
25 }
26 }
27 #ifdef FEAT_WINDOWS
28 status_redraw_all();
29--- 5290,5300 ----
30 }
31 if (p == NULL || buf->b_fname == NULL)
32 buf->b_fname = buf->b_ffname;
33 }
34+
35+ /* Always make the swap file name a full path, a "nofile" buffer may
36+ * also have a swap file. */
37+ mf_fullname(buf->b_ml.ml_mfp);
38 }
39 #ifdef FEAT_WINDOWS
40 status_redraw_all();
41*** ../vim-6.3.006/src/version.c Wed Jun 16 12:34:33 2004
42--- src/version.c Sun Jun 20 13:55:23 2004
43***************
44*** 643,644 ****
45--- 643,646 ----
46 { /* Add new patch number below this line */
47+ /**/
48+ 7,
49 /**/
50
51--
52hundred-and-one symptoms of being an internet addict:
53220. Your wife asks for sex and you tell her where to find you on IRC.
54
55 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
56/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
57\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
58 \\\ Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.086004 seconds and 4 git commands to generate.