]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.743
- add patches 7.3.619-743
[packages/vim.git] / 7.3.743
CommitLineData
5a088057
KK
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.743
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.3.743 (after 7.3.741)
11Problem: Tiny build still fails.
12Solution: Add #else in the right place.
13Files: src/ex_docmd.c
14
15
16*** ../vim-7.3.742/src/ex_docmd.c 2012-11-28 19:10:51.000000000 +0100
17--- src/ex_docmd.c 2012-11-28 22:14:21.000000000 +0100
18***************
19*** 1528,1541 ****
20 }
21 }
22
23! #ifndef FEAT_EVAL
24 /*
25 * Reset if_level, in case a sourced script file contains more ":if" than
26 * ":endif" (could be ":if x | foo | endif").
27 */
28 if_level = 0;
29-
30- did_endif = FALSE; /* in case do_cmdline used recursively */
31 #endif
32
33 --call_depth;
34--- 1528,1541 ----
35 }
36 }
37
38! #ifdef FEAT_EVAL
39! did_endif = FALSE; /* in case do_cmdline used recursively */
40! #else
41 /*
42 * Reset if_level, in case a sourced script file contains more ":if" than
43 * ":endif" (could be ":if x | foo | endif").
44 */
45 if_level = 0;
46 #endif
47
48 --call_depth;
49*** ../vim-7.3.742/src/version.c 2012-11-28 22:12:40.000000000 +0100
50--- src/version.c 2012-11-28 22:15:15.000000000 +0100
51***************
52*** 727,728 ****
53--- 727,730 ----
54 { /* Add new patch number below this line */
55+ /**/
56+ 743,
57 /**/
58
59--
60From "know your smileys":
61 :-)-O Smiling doctor with stethoscope
62
63 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
64/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
65\\\ an exciting new programming language -- http://www.Zimbu.org ///
66 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.174624 seconds and 4 git commands to generate.