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.294 < prev    next >
Encoding:
Internet Message Format  |  2004-02-27  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.294 (extra)
  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.294 (extra)
  11. Problem:    Mac: Cannot use modifiers with Space, Tab, Enter and Escape.
  12. Solution:   Handle all modifiers for these keys.  (Eckehard Berns)
  13. Files:        src/gui_mac.c
  14.  
  15.  
  16. *** ../vim-6.2.293/src/gui_mac.c    Wed Feb 25 13:13:26 2004
  17. --- src/gui_mac.c    Thu Feb 26 22:24:26 2004
  18. ***************
  19. *** 2153,2159 ****
  20.   
  21.       /* Add the modifier to the input bu if needed */
  22.       /* Do not want SHIFT-A or CTRL-A with modifier */
  23. !     if (!IS_SPECIAL(key_char))
  24.       {
  25.   #if 1
  26.       /* Clear modifiers when only one modifier is set */
  27. --- 2153,2164 ----
  28.   
  29.       /* Add the modifier to the input bu if needed */
  30.       /* Do not want SHIFT-A or CTRL-A with modifier */
  31. !     if (!IS_SPECIAL(key_char)
  32. !         && key_sym != vk_Space
  33. !         && key_sym != vk_Tab
  34. !         && key_sym != vk_Return
  35. !         && key_sym != vk_Enter
  36. !         && key_sym != vk_Esc)
  37.       {
  38.   #if 1
  39.       /* Clear modifiers when only one modifier is set */
  40. *** ../vim-6.2.293/src/version.c    Thu Feb 26 18:16:35 2004
  41. --- src/version.c    Sat Feb 28 15:29:05 2004
  42. ***************
  43. *** 639,640 ****
  44. --- 639,642 ----
  45.   {   /* Add new patch number below this line */
  46. + /**/
  47. +     294,
  48.   /**/
  49.  
  50. -- 
  51. FATHER: One day, lad, all this will be yours ...
  52. PRINCE: What - the curtains?
  53.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  54.  
  55.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  56. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  57. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  58.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  59.