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.0.035 < prev    next >
Encoding:
Internet Message Format  |  2001-10-29  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.035
  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.0.035
  11. Problem:    The menu item Edit/Global_Settings/Toggle_Toolbar doesn't work
  12.         when 'ignorecase' is set. (Allen Castaban)
  13. Solution:   Always match case when checking if a flag is already present in
  14.         'guioptions'.
  15. Files:        runtime/menu.vim
  16.  
  17.  
  18. *** ../vim60.34/runtime/menu.vim    Thu Oct 25 16:34:24 2001
  19. --- runtime/menu.vim    Mon Oct 29 15:20:33 2001
  20. ***************
  21. *** 203,209 ****
  22.   
  23.   fun! s:ToggleGuiOption(option)
  24.       " If a:option is already set in guioptions, then we want to remove it
  25. !     if match(&guioptions, a:option) > -1
  26.       exec "set go-=" . a:option
  27.       else
  28.       exec "set go+=" . a:option
  29. --- 203,209 ----
  30.   
  31.   fun! s:ToggleGuiOption(option)
  32.       " If a:option is already set in guioptions, then we want to remove it
  33. !     if match(&guioptions, "\\C" . a:option) > -1
  34.       exec "set go-=" . a:option
  35.       else
  36.       exec "set go+=" . a:option
  37. *** ../vim60.34/src/version.c    Mon Oct 29 15:15:20 2001
  38. --- src/version.c    Mon Oct 29 15:23:31 2001
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     35,
  45.   /**/
  46.  
  47. -- 
  48. Mental Floss prevents moral decay! 
  49.  
  50.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  51. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  52.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  53.