0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 8.1.0254: cannot build on MS-Windows; unused macro HAVE_HANDLE_DROP

Problem:    Cannot build on MS-Windows; Unused macro HAVE_HANDLE_DROP.
Solution:   Adjust #ifdef. Delete the macro.
This commit is contained in:
Bram Moolenaar
2018-08-07 22:42:53 +02:00
parent 40385dbcdf
commit 980bab457e
3 changed files with 3 additions and 8 deletions

View File

@@ -706,7 +706,7 @@ vim_main2(void)
scroll_region_reset(); /* In case Rows changed */
scroll_start(); /* may scroll the screen to the right position */
#ifdef FEAT_TITLE
#if defined(FEAT_TITLE) && (defined(UNIX) || defined(VMS) || defined(MACOS_X))
term_push_title(SAVE_RESTORE_BOTH);
#endif