home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.2.255 < prev    next >
Encoding:
Internet Message Format  |  2004-02-14  |  1.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.255
  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.255
  11. Problem:    GTK: A new item in the popup menu is put just after instead of
  12.         just before the right item. (Gabriel Zachmann)
  13. Solution:   Don't increment the menu item index.
  14. Files:        src/gui_gtk.c
  15.  
  16.  
  17. *** ../vim-6.2.254/src/gui_gtk.c    Tue Feb 10 19:41:59 2004
  18. --- src/gui_gtk.c    Thu Feb 12 12:46:10 2004
  19. ***************
  20. *** 805,811 ****
  21.           return;
  22.   
  23.       /* make place for the possible tearoff handle item */
  24. !     ++idx;
  25.       if (menu_is_separator(menu->name))
  26.       {
  27.           /* Separator: Just add it */
  28. --- 805,813 ----
  29.           return;
  30.   
  31.       /* make place for the possible tearoff handle item */
  32. !     /* ++idx; Don't understand why this was here; makes adding an item to
  33. !      * the popup menu appear after instead of before an existing item. */
  34.       if (menu_is_separator(menu->name))
  35.       {
  36.           /* Separator: Just add it */
  37. *** ../vim-6.2.254/src/version.c    Sun Feb 15 13:04:14 2004
  38. --- src/version.c    Sun Feb 15 13:06:27 2004
  39. ***************
  40. *** 639,640 ****
  41. --- 639,642 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     255,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 143. You dream in pallettes of 216 websafe colors.
  50.  
  51.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  52. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  53. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  54.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  55.