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.133 < prev    next >
Encoding:
Internet Message Format  |  2003-10-25  |  2.1 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.133
  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.133
  11. Problem:    When starting the GUI a bogus error message about 'imactivatekey'
  12.         may be given.
  13. Solution:   Only check the value of 'imactivatekey' when the GUI is running.
  14. Files:        src/gui.c, src/option.c
  15.  
  16.  
  17. *** ../vim-6.2.132/src/gui.c    Sat Sep 27 19:36:46 2003
  18. --- src/gui.c    Thu Oct 23 14:27:43 2003
  19. ***************
  20. *** 538,543 ****
  21. --- 538,548 ----
  22.           /* Tell the client that it can start sending commands. */
  23.           netbeans_startup_done();
  24.   #endif
  25. + #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
  26. +     if (!im_xim_isvalid_imactivate())
  27. +         EMSG(_("E599: Value of 'imactivatekey' is invalid"));
  28. + #endif
  29.       return;
  30.       }
  31.   
  32. *** ../vim-6.2.132/src/option.c    Sat Sep 27 19:42:53 2003
  33. --- src/option.c    Thu Oct 23 14:20:19 2003
  34. ***************
  35. *** 4774,4780 ****
  36.   #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
  37.       else if (varp == &p_imak)
  38.       {
  39. !     if (!im_xim_isvalid_imactivate())
  40.           errmsg = e_invarg;
  41.       }
  42.   #endif
  43. --- 4774,4780 ----
  44.   #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
  45.       else if (varp == &p_imak)
  46.       {
  47. !     if (gui.in_use && !im_xim_isvalid_imactivate())
  48.           errmsg = e_invarg;
  49.       }
  50.   #endif
  51. *** ../vim-6.2.132/src/version.c    Sun Oct 26 20:15:06 2003
  52. --- src/version.c    Sun Oct 26 20:18:19 2003
  53. ***************
  54. *** 639,640 ****
  55. --- 639,642 ----
  56.   {   /* Add new patch number below this line */
  57. + /**/
  58. +     133,
  59.   /**/
  60.  
  61. -- 
  62. ARTHUR:  Bloody peasant!
  63. DENNIS:  Oh, what a give away.  Did you here that, did you here that, eh?
  64.          That's what I'm on about -- did you see him repressing me, you saw it
  65.          didn't you?
  66.                                   The Quest for the Holy Grail (Monty Python)
  67.  
  68.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  69. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  70. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  71.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  72.