]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.089
- initial import
[packages/vim.git] / 6.2.089
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.089
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 6.2.089
11 Problem:    ":set isk+=" adds a comma. (Mark Waggoner)
12 Solution:   Don't add a comma when the added value is empty.
13 Files:      src/option.c
14
15
16 *** ../vim-6.2.088/src/option.c Mon Jun  2 22:01:43 2003
17 --- src/option.c        Wed Sep 10 20:12:09 2003
18 ***************
19 *** 3818,3824 ****
20                              * needed */
21                             if (adding || prepending)
22                             {
23 !                               comma = ((flags & P_COMMA) && *origval);
24                                 if (adding)
25                                 {
26                                     i = (int)STRLEN(origval);
27 --- 3818,3825 ----
28                              * needed */
29                             if (adding || prepending)
30                             {
31 !                               comma = ((flags & P_COMMA) && *origval != NUL
32 !                                                          && *newval != NUL);
33                                 if (adding)
34                                 {
35                                     i = (int)STRLEN(origval);
36 *** ../vim-6.2.088/src/version.c        Thu Sep 11 21:42:32 2003
37 --- src/version.c       Thu Sep 11 21:44:22 2003
38 ***************
39 *** 632,633 ****
40 --- 632,635 ----
41   {   /* Add new patch number below this line */
42 + /**/
43 +     89,
44   /**/
45
46 -- 
47 So when I saw the post to comp.editors, I rushed over to the FTP site to
48 grab it.  So I yank apart the tarball, light x candles, where x= the
49 vim version multiplied by the md5sum of the source divided by the MAC of
50 my NIC (8A3FA78155A8A1D346C3C4A), put on black robes, dim the lights,
51 wave a dead chicken over the hard drive, and summon the power of GNU GCC
52 with the magic words "make config ; make!".
53                 [Jason Spence, compiling Vim 5.0]
54
55  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
56 ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
57 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
58  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
This page took 0.027357 seconds and 3 git commands to generate.