# HG changeset patch # User Christian Brabandt # Date 1461178806 -7200 # Node ID c44ab784f5e59556041bfde7d6ccb9bfec99f4e9 # Parent a78ff852b8e46e9495f8d6214f9a38573d13ca54 commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a Author: Bram Moolenaar Date: Wed Apr 20 20:55:56 2016 +0200 patch 7.4.1760 Problem: Compiler warning for unused variable. Solution: Add #ifdef. (John Marriott) diff --git a/src/os_win32.c b/src/os_win32.c --- a/src/os_win32.c +++ b/src/os_win32.c @@ -1446,7 +1446,9 @@ WaitForChar(long msec) INPUT_RECORD ir; DWORD cRecords; WCHAR ch, ch2; +#ifdef FEAT_TIMERS int tb_change_cnt = typebuf.tb_change_cnt; +#endif if (msec > 0) /* Wait until the specified time has elapsed. */ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -749,6 +749,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1760, +/**/ 1759, /**/ 1758,