]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.222
- drop nagios.vim (PITA to maintain two versions), use vim-syntax-nagios
[packages/vim.git] / 7.2.222
CommitLineData
39a54fe5
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.222
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.222
11Problem: ":mksession" doesn't work properly with 'acd' set.
12Solution: Make it work. (Yakov Lerner)
13Files: src/ex_docmd.c
14
15
16*** ../vim-7.2.221/src/ex_docmd.c 2009-05-16 17:29:37.000000000 +0200
17--- src/ex_docmd.c 2009-07-01 20:18:22.000000000 +0200
18***************
19*** 8686,8691 ****
20--- 8693,8700 ----
21 }
22
23 #ifdef FEAT_SESSION
24+ /* Use the short file name until ":lcd" is used. We also don't use the
25+ * short file name when 'acd' is set, that is checked later. */
26 did_lcd = FALSE;
27
28 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
29***************
30*** 10573,10578 ****
31--- 10582,10590 ----
32 if (buf->b_sfname != NULL
33 && flagp == &ssop_flags
34 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
35+ #ifdef FEAT_AUTOCHDIR
36+ && !p_acd
37+ #endif
38 && !did_lcd)
39 name = buf->b_sfname;
40 else
41*** ../vim-7.2.221/src/version.c 2009-07-01 18:04:30.000000000 +0200
42--- src/version.c 2009-07-01 20:16:19.000000000 +0200
43***************
44*** 678,679 ****
45--- 678,681 ----
46 { /* Add new patch number below this line */
47+ /**/
48+ 222,
49 /**/
50
51--
52hundred-and-one symptoms of being an internet addict:
5343. You tell the kids they can't use the computer because "Daddy's got work to
54 do" and you don't even have a job.
55
56 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
57/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
58\\\ download, build and distribute -- http://www.A-A-P.org ///
59 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.249673 seconds and 4 git commands to generate.