]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.151
- new
[packages/vim.git] / 7.2.151
CommitLineData
4c0a682a
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.151
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.151
11Problem: ":hist a" doesn't work like ":hist all" as the docs suggest.
12Solution: Make ":hist a" and ":hist al" work. (Dominique Pelle)
13Files: src/ex_getln.c
14
15
16*** ../vim-7.2.150/src/ex_getln.c Wed Mar 18 12:50:58 2009
17--- src/ex_getln.c Sun Apr 12 13:36:06 2009
18***************
19*** 5686,5692 ****
20 histype1 = get_histtype(arg);
21 if (histype1 == -1)
22 {
23! if (STRICMP(arg, "all") == 0)
24 {
25 histype1 = 0;
26 histype2 = HIST_COUNT-1;
27--- 5686,5692 ----
28 histype1 = get_histtype(arg);
29 if (histype1 == -1)
30 {
31! if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
32 {
33 histype1 = 0;
34 histype2 = HIST_COUNT-1;
35*** ../vim-7.2.150/src/version.c Wed Apr 22 13:06:11 2009
36--- src/version.c Wed Apr 22 13:49:41 2009
37***************
38*** 678,679 ****
39--- 678,681 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 151,
43 /**/
44
45--
46I'm sure that I asked CBuilder to do a "full" install. Looks like I got
47a "fool" install, instead. Charles E Campbell, Jr, PhD
48
49
50 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
51/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52\\\ download, build and distribute -- http://www.A-A-P.org ///
53 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.033355 seconds and 4 git commands to generate.