]> git.pld-linux.org Git - packages/vim.git/blob - 5.7.003
- offcial vim patches from ftp://ftp.home.vim.org/pub/vim/patches.
[packages/vim.git] / 5.7.003
1 To: vim-dev@vim.org
2 Subject: Patch 5.7.003
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 ------------
6
7 Patch 5.7.003
8 Problem:    Searching for "[[:cntrl:]]" doesn't work.
9 Solution:   Exclude NUL from the matching characters, it terminates the list.
10 Files:      src/regexp.c
11
12
13 *** ../vim-5.7.2/src/regexp.c   Wed Jun  7 16:13:32 2000
14 --- src/regexp.c        Fri Aug  4 21:23:15 2000
15 ***************
16 *** 1211,1217 ****
17                             regc(*regparse++);
18                         else
19                             /* Characters assumed to be 8 bits */
20 !                           for (cu = 0; cu <= 255; cu++)
21                                 if ((*func)(cu))
22                                     regc(cu);
23                     }
24 --- 1211,1217 ----
25                             regc(*regparse++);
26                         else
27                             /* Characters assumed to be 8 bits */
28 !                           for (cu = 1; cu <= 255; cu++)
29                                 if ((*func)(cu))
30                                     regc(cu);
31                     }
32 *** ../vim-5.7.2/src/version.c  Tue Jun 27 20:54:03 2000
33 --- src/version.c       Fri Aug  4 21:43:24 2000
34 ***************
35 *** 439,440 ****
36 --- 439,442 ----
37   {   /* Add new patch number below this line */
38 + /**/
39 +     3,
40   /**/
41
42 -- 
43 hundred-and-one symptoms of being an internet addict:
44 118. You are on a first-name basis with your ISP's staff.
45
46 ///  Bram Moolenaar     Bram@moolenaar.net     http://www.moolenaar.net  \\\
47 \\\  Vim: http://www.vim.org      ICCF Holland: http://iccf-holland.org  ///
This page took 0.030334 seconds and 3 git commands to generate.