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.169 < prev    next >
Encoding:
Internet Message Format  |  2003-12-28  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.169
  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.169
  11. Problem:    The prototype for _Xmblen() appears in a recent XFree86 header
  12.         file, causing a warning for our prototype. (Hisashi T Fujinaka)
  13. Solution:   Move the prototype to an osdef file, so that it's filtered out.
  14. Files:        src/mbyte.c, src/osdef2.h.in
  15.  
  16.  
  17. *** ../vim-6.2.168/src/mbyte.c    Sun Nov  9 20:20:26 2003
  18. --- src/mbyte.c    Tue Dec 23 16:03:30 2003
  19. ***************
  20. *** 543,549 ****
  21.   # else
  22.           char buf[MB_MAXBYTES];
  23.   # ifdef X_LOCALE
  24. -         extern int _Xmblen __ARGS((char *, size_t));
  25.   #  ifndef mblen
  26.   #   define mblen _Xmblen
  27.   #  endif
  28. --- 547,552 ----
  29. *** ../vim-6.2.168/src/osdef2.h.in    Sat Dec 15 22:24:12 2001
  30. --- src/osdef2.h.in    Wed Dec 24 10:26:00 2003
  31. ***************
  32. *** 79,81 ****
  33. --- 79,87 ----
  34.   #else
  35.   extern char    *mktemp __ARGS((char *));
  36.   #endif
  37. + #ifdef ISC
  38. + extern int    _Xmblen __ARGS((char const *, size_t));
  39. + #else
  40. + extern int    _Xmblen __ARGS((char *, size_t));
  41. + #endif
  42. *** ../vim-6.2.168/src/version.c    Mon Dec 29 21:14:00 2003
  43. --- src/version.c    Mon Dec 29 21:16:30 2003
  44. ***************
  45. *** 639,640 ****
  46. --- 639,642 ----
  47.   {   /* Add new patch number below this line */
  48. + /**/
  49. +     169,
  50.   /**/
  51.  
  52. -- 
  53. From "know your smileys":
  54.  :-*    A big kiss!
  55.  
  56.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  57. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  58. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  59.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  60.