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.0.009 < prev    next >
Encoding:
Internet Message Format  |  2001-09-28  |  1.2 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.009
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. Patch 6.0.009
  8. Problem:    Nextstep doesn't have S_ISBLK. (John Beppu)
  9. Solution:   Define S_ISBLK using S_IFBLK.
  10. Files:        src/os_unix.h
  11.  
  12.  
  13. *** ../vim60.8/src/os_unix.h    Mon Aug 27 17:29:01 2001
  14. --- src/os_unix.h    Fri Sep 28 20:21:12 2001
  15. ***************
  16. *** 486,491 ****
  17. --- 486,494 ----
  18.   #if !defined(S_ISREG) && defined(S_IFREG)
  19.   # define    S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  20.   #endif
  21. + #if !defined(S_ISBLK) && defined(S_IFBLK)
  22. + # define    S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  23. + #endif
  24.   #if !defined(S_ISSOCK) && defined(S_IFSOCK)
  25.   # define    S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
  26.   #endif
  27. *** ../vim60.8/src/version.c    Sat Sep 29 18:26:29 2001
  28. --- src/version.c    Sat Sep 29 18:25:22 2001
  29. ***************
  30. *** 608,609 ****
  31. --- 608,611 ----
  32.   {   /* Add new patch number below this line */
  33. + /**/
  34. +     9,
  35.   /**/
  36.  
  37. -- 
  38. Q: What is a patch 22?
  39. A: A patch you need to include to make it possible to include patches.
  40.  
  41.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  42. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  43.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  44.