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.1.179 < prev    next >
Encoding:
Internet Message Format  |  2002-09-15  |  2.0 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.179
  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.1.179 (depends on 6.1.091)
  11. Problem:    When using X11R5 XIMPreserveState is undefined. (Albert Chin)
  12. Solution:   Include the missing definitions.
  13. Files:        src/mbyte.c
  14.  
  15.  
  16. *** ../vim61.178/src/mbyte.c    Sun Aug 18 16:05:35 2002
  17. --- src/mbyte.c    Sat Sep  7 12:41:08 2002
  18. ***************
  19. *** 2909,2914 ****
  20. --- 2909,2922 ----
  21.       }
  22.       else
  23.       {
  24. + # ifndef XIMPreeditUnKnown
  25. +     /* X11R5 doesn't have these, it looks safe enough to define here. */
  26. +     typedef unsigned long XIMPreeditState;
  27. + #  define XIMPreeditUnKnown    0L
  28. + #  define XIMPreeditEnable    1L
  29. + #  define XIMPreeditDisable    (1L<<1)
  30. + #  define XNPreeditState    "preeditState"
  31. + # endif
  32.       XIMPreeditState preedit_state = XIMPreeditUnKnown;
  33.       XVaNestedList preedit_attr;
  34.       XIC pxic;
  35. *** ../vim61.178/src/version.c    Sat Sep 14 17:08:10 2002
  36. --- src/version.c    Mon Sep 16 21:02:03 2002
  37. ***************
  38. *** 608,609 ****
  39. --- 608,611 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     179,
  43.   /**/
  44.  
  45. -- 
  46. The acknowledged parents of reengineering are Michael Hammer and James Champy.
  47. When I say they're the "parents" I don't mean they had sex - and I apologize
  48. for making you think about it.  I mean they wrote the best-selling business
  49. book _Reengineering the Corporation_, which was published in 1993.
  50.    Businesses flocked to reengineering like frat boys to a drunken
  51. cheerleader.  (This analogy wasn't necessary, but I'm trying to get my mind
  52. off that Hammer and Champy thing.)
  53.                 (Scott Adams - The Dilbert principle)
  54.  
  55.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  56. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  57. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  58.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  59.