mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
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)
This commit is contained in:
@@ -73,8 +73,9 @@
|
||||
// always use unlink() to remove files
|
||||
#ifndef PROTO
|
||||
# ifdef VMS
|
||||
# define mch_remove(x) delete((char *)(x))
|
||||
# define vim_mkdir(x, y) mkdir((char *)(x), y)
|
||||
# define vim_mkdir(x, y) mkdir((char *)vms_fixfilename(x), y)
|
||||
# define mch_rmdir(x) delete((char *)vms_fixfilename(x))
|
||||
# define mch_remove(x) delete((char *)vms_fixfilename(x))
|
||||
# else
|
||||
# define vim_mkdir(x, y) mkdir((char *)(x), y)
|
||||
# define mch_rmdir(x) rmdir((char *)(x))
|
||||
|
Reference in New Issue
Block a user