home *** CD-ROM | disk | FTP | other *** search
- To: vim-dev@vim.org
- Subject: Patch 6.0.123
- Fcc: outbox
- From: Bram Moolenaar <Bram@moolenaar.net>
- MIME-Version: 1.0
- Content-Type: text/plain; charset=ISO-8859-1
- Content-Transfer-Encoding: 8bit
- ------------
-
- Patch 6.0.123 (depends on patch 6.0.119)
- Problem: Win16: Compilation problems.
- Solution: Move "&&" to other lines. (Vince Negri)
- Files: src/eval.c
-
-
- *** ../vim60.122/src/eval.c Mon Jan 7 14:08:11 2002
- --- src/eval.c Wed Jan 9 16:18:38 2002
- ***************
- *** 3418,3430 ****
- #ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
- if (
- # ifdef WIN3264
- ! mch_writable(p)
- # else
- # if defined(UNIX) || defined(VMS)
- ! (perm & 0222)
- # endif
- # endif
- ! && mch_access((char *)p, W_OK) == 0
- )
- #endif
- {
- --- 3418,3430 ----
- #ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
- if (
- # ifdef WIN3264
- ! mch_writable(p) &&
- # else
- # if defined(UNIX) || defined(VMS)
- ! (perm & 0222) &&
- # endif
- # endif
- ! mch_access((char *)p, W_OK) == 0
- )
- #endif
- {
- *** ../vim60.122/src/version.c Wed Jan 9 16:23:13 2002
- --- src/version.c Wed Jan 9 16:23:31 2002
- ***************
- *** 608,609 ****
- --- 608,611 ----
- { /* Add new patch number below this line */
- + /**/
- + 123,
- /**/
-
- --
- "Software is like sex... it's better when it's free."
- -- Linus Torvalds, initiator of the free Linux OS
- Makes me wonder what FSF stands for...?
-
- /// Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net \\\
- ((( Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim )))
- \\\ Help me helping AIDS orphans in Uganda - http://iccf-holland.org ///
-