diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-09 22:37:52 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-09 22:37:52 +0000 |
commit | 1056d988442648527a45366c9d16523cdc521031 (patch) | |
tree | afd2b3182b3c81edf3f95a34c10b3a3ea2e5c833 /src/main.c | |
parent | 4ea8fe1d0600a7020c9f3a652f1d429a96965311 (diff) | |
download | vim-git-1056d988442648527a45366c9d16523cdc521031.tar.gz |
updated for version 7.0219v7.0219
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 60aebf9ff..37d2e9437 100644 --- a/src/main.c +++ b/src/main.c @@ -2589,6 +2589,9 @@ source_startup_scripts(parmp) #ifdef SYS_VIMRC_FILE (void)do_source((char_u *)SYS_VIMRC_FILE, FALSE, FALSE); #endif +#ifdef MACOS_X + (void)do_source((char_u *)"$VIMRUNTIME/macmap.vim", FALSE, FALSE); +#endif /* * Try to read initialization commands from the following places: |