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

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.204
  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.204 (depends on 6.1.129)
  11. Problem:    Warning for an illegal pointer on Solaris.
  12. Solution:   Add a typecast. (Derek Wyatt)
  13. Files:        src/misc2.c
  14.  
  15.  
  16. *** ../vim61.203/src/misc2.c    Mon Sep 16 22:00:32 2002
  17. --- src/misc2.c    Mon Sep 30 22:26:16 2002
  18. ***************
  19. *** 2674,2680 ****
  20.       return FALSE;        /* no file name is not illegal */
  21.       if (name[strlen(name) - 1] != '/')
  22.       return FALSE;        /* no trailing slash */
  23. !     if (mch_isdir(name))
  24.       return FALSE;        /* trailing slash for a directory */
  25.       return TRUE;
  26.   }
  27. --- 2674,2680 ----
  28.       return FALSE;        /* no file name is not illegal */
  29.       if (name[strlen(name) - 1] != '/')
  30.       return FALSE;        /* no trailing slash */
  31. !     if (mch_isdir((char_u *)name))
  32.       return FALSE;        /* trailing slash for a directory */
  33.       return TRUE;
  34.   }
  35. *** ../vim61.203/src/version.c    Mon Sep 30 22:22:34 2002
  36. --- src/version.c    Mon Sep 30 22:27:44 2002
  37. ***************
  38. *** 608,609 ****
  39. --- 608,611 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     204,
  43.   /**/
  44.  
  45. -- 
  46. From "know your smileys":
  47.  <<<:-{    Worf (Never smiles anyways, so he's a bad smiley)
  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.