]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.350
- new
[packages/vim.git] / 7.3.350
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.350
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.350
11 Problem:    Block of code after ":lua << EOF" may not work. (Paul Isambert)
12 Solution:   Recognize the ":lua" command, skip to EOF.
13 Files:      src/eval.c
14
15
16 *** ../vim-7.3.349/src/eval.c   2011-09-30 18:35:49.000000000 +0200
17 --- src/eval.c  2011-10-26 13:12:06.000000000 +0200
18 ***************
19 *** 20899,20904 ****
20 --- 20899,20906 ----
21                                     && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
22                         || (p[0] == 't' && p[1] == 'c'
23                                     && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
24 +                       || (p[0] == 'l' && p[1] == 'u' && p[2] == 'a'
25 +                                   && !ASCII_ISALPHA(p[3]))
26                         || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
27                                     && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
28                         || (p[0] == 'm' && p[1] == 'z'
29 *** ../vim-7.3.349/src/version.c        2011-10-26 11:44:15.000000000 +0200
30 --- src/version.c       2011-10-26 13:13:21.000000000 +0200
31 ***************
32 *** 716,717 ****
33 --- 716,719 ----
34   {   /* Add new patch number below this line */
35 + /**/
36 +     350,
37   /**/
38
39 -- 
40 From "know your smileys":
41  :-| :-|   Deja' vu!
42
43  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
44 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
45 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
46  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.028046 seconds and 3 git commands to generate.