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.031 < prev    next >
Encoding:
Internet Message Format  |  2003-07-23  |  3.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.031
  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.031
  11. Problem:    The langmenu entry in the options window doesn't work. (Rodolfo
  12.         Lima)
  13.         With GTK 1 the ":options" command causes an error message.
  14.         (Michael Naumann)
  15. Solution:   Change "lmenu" to "langmenu".  Only display the 'tbis' option for
  16.         GTK 2.
  17. Files:        runtime/optwin.vim
  18.  
  19.  
  20. *** ../vim-6.2.030/runtime/optwin.vim    Sat May 17 22:42:35 2003
  21. --- runtime/optwin.vim    Tue Jul 22 21:48:28 2003
  22. ***************
  23. *** 1,7 ****
  24.   " These commands create the option window.
  25.   "
  26.   " Maintainer:    Bram Moolenaar <Bram@vim.org>
  27. ! " Last Change:    2003 May 17
  28.   
  29.   " If there already is an option window, jump to that one.
  30.   if bufwinnr("option-window") > 0
  31. --- 1,7 ----
  32.   " These commands create the option window.
  33.   "
  34.   " Maintainer:    Bram Moolenaar <Bram@vim.org>
  35. ! " Last Change:    2003 Jul 22
  36.   
  37.   " If there already is an option window, jump to that one.
  38.   if bufwinnr("option-window") > 0
  39. ***************
  40. *** 517,524 ****
  41.     if has("gui_gtk")
  42.       call append("$", "toolbar\t\"icons\", \"text\" and/or \"tooltips\"; how to show the toolbar")
  43.       call <SID>OptionG("tb", &tb)
  44. !     call append("$", "toolbariconsize\tSize of toolbar icons")
  45. !     call <SID>OptionG("tbis", &tbis)
  46.       call append("$", "guiheadroom\troom (in pixels) left above/below the window")
  47.       call append("$", " \tset ghr=" . &ghr)
  48.     endif
  49. --- 517,526 ----
  50.     if has("gui_gtk")
  51.       call append("$", "toolbar\t\"icons\", \"text\" and/or \"tooltips\"; how to show the toolbar")
  52.       call <SID>OptionG("tb", &tb)
  53. !     if has("gui_gtk2")
  54. !       call append("$", "toolbariconsize\tSize of toolbar icons")
  55. !       call <SID>OptionG("tbis", &tbis)
  56. !     endif
  57.       call append("$", "guiheadroom\troom (in pixels) left above/below the window")
  58.       call append("$", " \tset ghr=" . &ghr)
  59.     endif
  60. ***************
  61. *** 530,536 ****
  62.     endif
  63.     if has("multi_lang")
  64.       call append("$", "langmenu\tlanguage to be used for the menus")
  65. !     call <SID>OptionG("lmenu", &lm)
  66.     endif
  67.     call append("$", "menuitems\tmaximum number of items in one menu")
  68.     call append("$", " \tset mis=" . &mis)
  69. --- 532,538 ----
  70.     endif
  71.     if has("multi_lang")
  72.       call append("$", "langmenu\tlanguage to be used for the menus")
  73. !     call <SID>OptionG("langmenu", &lm)
  74.     endif
  75.     call append("$", "menuitems\tmaximum number of items in one menu")
  76.     call append("$", " \tset mis=" . &mis)
  77. *** ../vim-6.2.030/src/version.c    Thu Jul 24 22:09:03 2003
  78. --- src/version.c    Thu Jul 24 22:18:30 2003
  79. ***************
  80. *** 632,633 ****
  81. --- 632,635 ----
  82.   {   /* Add new patch number below this line */
  83. + /**/
  84. +     31,
  85.   /**/
  86.  
  87. -- 
  88. ARTHUR: It is I, Arthur, son of Uther Pendragon, from the castle of Camelot.
  89.         King of all Britons, defeator of the Saxons, sovereign of all England!
  90.    [Pause]
  91. SOLDIER: Get away!
  92.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  93.  
  94.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  95. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  96. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  97.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  98.