]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.093
- initial import
[packages/vim.git] / 6.2.093
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.093
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.093
11 Problem:    ":nnoremenu" also defines menu for Visual mode. (Klaus Bosau)
12 Solution:   Check the second command character for an "o", not the third.
13 Files:      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.]
47 INSPECTOR 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.030246 seconds and 3 git commands to generate.