comparison src/macros.h @ 23503:49d866e9b439 v8.2.2294

patch 8.2.2294: VMS: a few remaining problems Commit: https://github.com/vim/vim/commit/82c38fe508155c11a904e6111b5bfb6adde3fb9a Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 4 10:47:26 2021 +0100 patch 8.2.2294: VMS: a few remaining problems Problem: VMS: a few remaining problems. Solution: Add VMS specific changes. Add Lua support. (Zoltan Arpadffy)
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Jan 2021 11:00:11 +0100
parents bdda90ed5f6c
children 15408ab5fed7
comparison
equal deleted inserted replaced
23502:f2f8c3848831 23503:49d866e9b439
159 // see mch_open() comment 159 // see mch_open() comment
160 # define mch_fopen(n, p) fopen(vms_fixfilename(n), (p)) 160 # define mch_fopen(n, p) fopen(vms_fixfilename(n), (p))
161 # define mch_fstat(n, p) fstat((n), (p)) 161 # define mch_fstat(n, p) fstat((n), (p))
162 # undef HAVE_LSTAT // VMS does not have lstat() 162 # undef HAVE_LSTAT // VMS does not have lstat()
163 # define mch_stat(n, p) stat(vms_fixfilename(n), (p)) 163 # define mch_stat(n, p) stat(vms_fixfilename(n), (p))
164 # define mch_rmdir(n) rmdir(vms_fixfilename(n))
165 #else 164 #else
166 # ifndef MSWIN 165 # ifndef MSWIN
167 # define mch_access(n, p) access((n), (p)) 166 # define mch_access(n, p) access((n), (p))
168 # endif 167 # endif
169 168