]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.359
- new
[packages/vim.git] / 7.3.359
CommitLineData
ae497238
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.359
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.359
11Problem: Command line completion shows dict functions.
12Solution: Skip dict functions for completion. (Yasuhiro Matsumoto)
13Files: src/eval.c
14
15
16*** ../vim-7.3.358/src/eval.c 2011-10-26 13:19:23.000000000 +0200
17--- src/eval.c 2011-11-30 14:53:38.000000000 +0100
18***************
19*** 875,881 ****
20
21 #ifdef EBCDIC
22 /*
23! * Sort the function table, to enable binary sort.
24 */
25 sortFunctions();
26 #endif
27--- 875,881 ----
28
29 #ifdef EBCDIC
30 /*
31! * Sort the function table, to enable binary search.
32 */
33 sortFunctions();
34 #endif
35***************
36*** 21737,21742 ****
37--- 21737,21745 ----
38 ++hi;
39 fp = HI2UF(hi);
40
41+ if (fp->uf_flags & FC_DICT)
42+ return NULL; /* don't show dict functions */
43+
44 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
45 return fp->uf_name; /* prevents overflow */
46
47*** ../vim-7.3.358/src/version.c 2011-11-30 14:47:12.000000000 +0100
48--- src/version.c 2011-11-30 14:56:57.000000000 +0100
49***************
50*** 716,717 ****
51--- 716,719 ----
52 { /* Add new patch number below this line */
53+ /**/
54+ 359,
55 /**/
56
57--
58'Psychologist' -- Someone who looks at everyone else when
59an attractive woman enters the room.
60
61 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
62/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
63\\\ an exciting new programming language -- http://www.Zimbu.org ///
64 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.027558 seconds and 4 git commands to generate.