commit | 08f88b139d2f93661ed2b17214ee6b308b4edb5b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Apr 02 17:21:16 2017 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Apr 02 17:21:16 2017 +0200 |
tree | 5f8c2ccb84fe903f97bf87d0dff2a5741bca6b99 | |
parent | 85045a73db258a054a17fd52a67eb5cd02a788dc [diff] [blame] |
patch 8.0.0539: startup test fails on Mac Problem: Startup test fails on Mac. Solution: Use another term name, "unknown" is known. Avoid a 2 second delay.
diff --git a/src/term.c b/src/term.c index 75c9fbf..cac47da 100644 --- a/src/term.c +++ b/src/term.c
@@ -1705,7 +1705,8 @@ { screen_start(); /* don't know where cursor is now */ out_flush(); - ui_delay(2000L, TRUE); + if (!is_not_a_term()) + ui_delay(2000L, TRUE); } set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0);