]> git.ipfire.org Git - ipfire-3.x.git/blob - vim/patches/vim-7.3.412.patch0
3b181883a95b5f2f063d177882f806f77ea76644
[ipfire-3.x.git] / vim / patches / vim-7.3.412.patch0
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.412
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.412
11 Problem: Storing a float in a session file has an additional '&'.
12 Solution: Remove the '&'. (Yasuhiro Matsumoto)
13 Files: src/eval.c
14
15
16 *** ../vim-7.3.411/src/eval.c 2012-01-20 20:44:38.000000000 +0100
17 --- src/eval.c 2012-01-26 11:39:39.000000000 +0100
18 ***************
19 *** 22929,22935 ****
20 f = -f;
21 sign = '-';
22 }
23 ! if ((fprintf(fd, "let %s = %c&%f",
24 this_var->di_key, sign, f) < 0)
25 || put_eol(fd) == FAIL)
26 return FAIL;
27 --- 22929,22935 ----
28 f = -f;
29 sign = '-';
30 }
31 ! if ((fprintf(fd, "let %s = %c%f",
32 this_var->di_key, sign, f) < 0)
33 || put_eol(fd) == FAIL)
34 return FAIL;
35 *** ../vim-7.3.411/src/version.c 2012-01-26 11:43:04.000000000 +0100
36 --- src/version.c 2012-01-26 11:44:56.000000000 +0100
37 ***************
38 *** 716,717 ****
39 --- 716,719 ----
40 { /* Add new patch number below this line */
41 + /**/
42 + 412,
43 /**/
44
45 --
46 Imagine a world without hypothetical situations.
47
48 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
49 /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
50 \\\ an exciting new programming language -- http://www.Zimbu.org ///
51 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///