diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-17 17:13:30 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-17 17:13:30 +0100 |
commit | 88c86eb751de9e7e410b405084d35b32fafc2a24 (patch) | |
tree | cf0c456ba4a4f0455fdcae1452e10716ae23a53c /src/feature.h | |
parent | 4131fd5509b283e978e8c6161f09643b64719787 (diff) | |
download | vim-git-88c86eb751de9e7e410b405084d35b32fafc2a24.tar.gz |
patch 8.1.0766: various problems when using Vim on VMSv8.1.0766
Problem: Various problems when using Vim on VMS.
Solution: Various fixes. Define long_long_T. (Zoltan Arpadffy)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/feature.h b/src/feature.h index d5a685338..59fcf785e 100644 --- a/src/feature.h +++ b/src/feature.h @@ -380,7 +380,7 @@ /* * +timers timer_start() */ -#if defined(FEAT_RELTIME) && (defined(UNIX) || defined(WIN32)) +#if defined(FEAT_RELTIME) && (defined(UNIX) || defined(WIN32) || defined(VMS) ) # define FEAT_TIMERS #endif @@ -1306,7 +1306,7 @@ * +balloon_eval_term Allow balloon expression evaluation in the terminal. */ #if defined(FEAT_HUGE) && defined(FEAT_TIMERS) && \ - (defined(UNIX) || (defined(WIN32) && !defined(FEAT_GUI_W32))) + (defined(UNIX) || defined(VMS) || (defined(WIN32) && !defined(FEAT_GUI_W32))) # define FEAT_BEVAL_TERM #endif |