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.385 < prev    next >
Encoding:
Internet Message Format  |  2003-03-08  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.385
  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.385 (depends on 6.1.383)
  11. Problem:    Can't compile without the multi-byte feature.
  12. Solution:   Move an #ifdef.  (Christian J. Robinson)
  13. Files:        src/buffer.c
  14.  
  15.  
  16. *** ../vim61.384/src/buffer.c    Sun Mar  9 17:49:38 2003
  17. --- src/buffer.c    Sun Mar  9 22:36:37 2003
  18. ***************
  19. *** 3504,3511 ****
  20.           while (++width < maxwidth)
  21.               *s++ = fillchar;
  22.           }
  23. - #endif
  24.           else
  25.           s = out + maxwidth - 1;
  26.           for (l = 0; l < itemcnt; l++)
  27.           if (item[l].start > s)
  28. --- 3504,3511 ----
  29.           while (++width < maxwidth)
  30.               *s++ = fillchar;
  31.           }
  32.           else
  33. + #endif
  34.           s = out + maxwidth - 1;
  35.           for (l = 0; l < itemcnt; l++)
  36.           if (item[l].start > s)
  37. *** ../vim61.384/src/version.c    Sun Mar  9 22:25:50 2003
  38. --- src/version.c    Sun Mar  9 22:38:07 2003
  39. ***************
  40. *** 613,614 ****
  41. --- 613,616 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     385,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 14. You start introducing yourself as "Jim at I-I-Net dot net dot au"
  50.  
  51.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  52. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  53. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  54.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  55.