To: vim_dev@googlegroups.com Subject: Patch 8.2.1336 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 8.2.1336 (after 8.2.1335) Problem: Build failure on non-Unix systems. Solution: Add #ifdef. Files: src/gui.c *** ../vim-8.2.1335/src/gui.c 2020-08-01 13:10:04.582539553 +0200 --- src/gui.c 2020-08-01 13:21:10.617297773 +0200 *************** *** 5588,5594 **** int c = merge_modifyOtherKeys(key, &modifiers); if ((c == Ctrl_C && ctrl_c_interrupts) ! || (intr_char != Ctrl_C && c == intr_char)) { got_int = TRUE; return c; --- 5588,5597 ---- int c = merge_modifyOtherKeys(key, &modifiers); if ((c == Ctrl_C && ctrl_c_interrupts) ! #ifdef UNIX ! || (intr_char != Ctrl_C && c == intr_char) ! #endif ! ) { got_int = TRUE; return c; *** ../vim-8.2.1335/src/version.c 2020-08-01 13:10:04.586539542 +0200 --- src/version.c 2020-08-01 13:21:59.276999777 +0200 *************** *** 756,757 **** --- 756,759 ---- { /* Add new patch number below this line */ + /**/ + 1336, /**/ -- Common sense is what tells you that the world is flat. /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///