]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.415
- up to 7.3.600
[packages/vim.git] / 7.3.415
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.415
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.415 (after 7.3.359)
11 Problem:    Completion of functions stops once a dictionary is encountered.
12             (James McCoy)
13 Solution:   Return an empty string instead of NULL.
14 Files:      src/eval.c
15
16
17 *** ../vim-7.3.414/src/eval.c   2012-01-26 11:45:25.000000000 +0100
18 --- src/eval.c  2012-01-26 13:45:52.000000000 +0100
19 ***************
20 *** 21802,21808 ****
21         fp = HI2UF(hi);
22   
23         if (fp->uf_flags & FC_DICT)
24 !           return NULL; /* don't show dict functions */
25   
26         if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
27             return fp->uf_name; /* prevents overflow */
28 --- 21802,21808 ----
29         fp = HI2UF(hi);
30   
31         if (fp->uf_flags & FC_DICT)
32 !           return ""; /* don't show dict functions */
33   
34         if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
35             return fp->uf_name; /* prevents overflow */
36 *** ../vim-7.3.414/src/version.c        2012-01-26 13:40:04.000000000 +0100
37 --- src/version.c       2012-01-26 14:32:16.000000000 +0100
38 ***************
39 *** 716,717 ****
40 --- 716,719 ----
41   {   /* Add new patch number below this line */
42 + /**/
43 +     415,
44   /**/
45
46 -- 
47 Normal people believe that if it ain't broke, don't fix it.  Engineers believe
48 that if it ain't broke, it doesn't have enough features yet.
49                                 (Scott Adams - The Dilbert principle)
50
51  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
52 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
53 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
54  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.024803 seconds and 3 git commands to generate.