]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.093
- use new bonobo patch (20040115)
[packages/vim.git] / 6.2.093
CommitLineData
717fd8f6
AF
1To: vim-dev@vim.org
2Subject: Patch 6.2.093
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 6.2.093
11Problem: ":nnoremenu" also defines menu for Visual mode. (Klaus Bosau)
12Solution: Check the second command character for an "o", not the third.
13Files: src/menu.c
14
15
16*** ../vim-6.2.092/src/menu.c Sun May 25 19:52:42 2003
17--- src/menu.c Sat Sep 6 15:07:31 2003
18***************
19*** 1473,1479 ****
20 | MENU_VISUAL_MODE | MENU_OP_PENDING_MODE;
21 break;
22 case 'n':
23! if (cmd[1] != 'o') /* nmenu */
24 {
25 modes = MENU_NORMAL_MODE;
26 break;
27--- 1473,1479 ----
28 | MENU_VISUAL_MODE | MENU_OP_PENDING_MODE;
29 break;
30 case 'n':
31! if (*cmd != 'o') /* nmenu, not noremenu */
32 {
33 modes = MENU_NORMAL_MODE;
34 break;
35*** ../vim-6.2.092/src/version.c Fri Sep 12 20:07:18 2003
36--- src/version.c Fri Sep 12 20:10:32 2003
37***************
38*** 632,633 ****
39--- 632,635 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 93,
43 /**/
44
45--
46 [The rest of the ARMY stand around looking at a loss.]
47INSPECTOR END OF FILM: (picks up megaphone) All right! Clear off! Go on!
48 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
49
50 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
51/// Creator of Vim - Vi IMproved -- http://www.Vim.org \\\
52\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
53 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.036739 seconds and 4 git commands to generate.