diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-12-15 12:54:18 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-12-15 12:54:18 +0100 |
commit | 95f0b6e5a5e5861da34cc064c601faf4eeed4ed6 (patch) | |
tree | e8b7414262ec23f9d5954f3008c936c8cf8c839a /src/ui.c | |
parent | 3e2d1c8cd61ca073e680f3b221ce887e05ba39cf (diff) | |
download | vim-git-95f0b6e5a5e5861da34cc064c601faf4eeed4ed6.tar.gz |
patch 8.2.0009: VMS: terminal version doesn't buildv8.2.0009
Problem: VMS: terminal version doesn't build.
Solution: Move MIN definition. Adjust #ifdefs. (Zoltan Arpadffy)
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -247,7 +247,7 @@ theend: return retval; } -#if defined(UNIX) || defined(FEAT_GUI) || defined(PROTO) +#if defined(UNIX) || defined(VMS) || defined(FEAT_GUI) || defined(PROTO) /* * Common code for mch_inchar() and gui_inchar(): Wait for a while or * indefinitely until characters are available, dealing with timers and |