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.201 < prev    next >
Encoding:
Internet Message Format  |  2002-10-29  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.201
  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.201 (depends on 6.1.192)
  11. Problem:    Warning for illegal pointer combination. (Zoltan Arpadffy)
  12. Solution:   Add a typecast.
  13. Files:        src/diff.c
  14.  
  15.  
  16. *** ../vim61.200/src/diff.c    Mon Sep 23 21:12:18 2002
  17. --- src/diff.c    Mon Sep 30 19:31:21 2002
  18. ***************
  19. *** 964,970 ****
  20.   # endif
  21.   #ifdef FEAT_SCROLLBIND
  22.       if (vim_strchr(p_sbo, 'h') == NULL)
  23. !     do_cmdline_cmd("set sbo+=hor");
  24.   #endif
  25.   
  26.       if (addbuf)
  27. --- 964,970 ----
  28.   # endif
  29.   #ifdef FEAT_SCROLLBIND
  30.       if (vim_strchr(p_sbo, 'h') == NULL)
  31. !     do_cmdline_cmd((char_u *)"set sbo+=hor");
  32.   #endif
  33.   
  34.       if (addbuf)
  35. *** ../vim61.200/src/version.c    Sat Sep 28 15:15:20 2002
  36. --- src/version.c    Mon Sep 30 19:33:01 2002
  37. ***************
  38. *** 608,609 ****
  39. --- 608,611 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     201,
  43.   /**/
  44.  
  45. -- 
  46. From "know your smileys":
  47.  O:-)    Saint
  48.  
  49.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  50. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  51. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  52.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  53.