]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.131
- updated to 7.1.285
[packages/vim.git] / 7.1.131
CommitLineData
25f687b8
AM
1To: vim-dev@vim.org
2Subject: patch 7.1.131
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 7.1.131
11Problem: ":mksession" always adds ":setlocal autoread". (Christian J.
12 Robinson)
13Solution: Skip boolean global/local option using global value.
14Files: src/option.c
15
16
17*** ../vim-7.1.130/src/option.c Wed Sep 26 22:35:06 2007
18--- src/option.c Sun Sep 30 16:21:08 2007
19***************
20*** 8753,8758 ****
21--- 8753,8760 ----
22 char *name;
23 int value;
24 {
25+ if (value < 0) /* global/local option using global value */
26+ return OK;
27 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
28 || put_eol(fd) < 0)
29 return FAIL;
30*** ../vim-7.1.130/src/version.c Mon Oct 1 22:53:27 2007
31--- src/version.c Tue Oct 2 20:39:02 2007
32***************
33*** 668,669 ****
34--- 668,671 ----
35 { /* Add new patch number below this line */
36+ /**/
37+ 131,
38 /**/
39
40--
41ARTHUR: Old woman!
42DENNIS: Man!
43ARTHUR: Man. I'm sorry. Old man, What knight live in that castle over there?
44DENNIS: I'm thirty-seven.
45 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
46
47 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
48/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
49\\\ download, build and distribute -- http://www.A-A-P.org ///
50 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.037578 seconds and 4 git commands to generate.