To: vim_dev@googlegroups.com Subject: Patch 8.2.1911 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 8.2.1911 Problem: Tiny build fails. Solution: Add #ifdef. Files: src/insexpand.c *** ../vim-8.2.1910/src/insexpand.c 2020-10-26 19:22:35.513731793 +0100 --- src/insexpand.c 2020-10-27 09:11:59.252491966 +0100 *************** *** 4067,4076 **** } else { // Update completion sequence number when needed. if (compl_curr_match->cp_number == -1) ins_compl_update_sequence_numbers(); ! // The match should always have a sequence number now, this is // just a safety check. if (compl_curr_match->cp_number != -1) --- 4067,4077 ---- } else { + #if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL) // Update completion sequence number when needed. if (compl_curr_match->cp_number == -1) ins_compl_update_sequence_numbers(); ! #endif // The match should always have a sequence number now, this is // just a safety check. if (compl_curr_match->cp_number != -1) *** ../vim-8.2.1910/src/version.c 2020-10-26 21:39:09.119677673 +0100 --- src/version.c 2020-10-27 09:12:29.768373193 +0100 *************** *** 752,753 **** --- 752,755 ---- { /* Add new patch number below this line */ + /**/ + 1911, /**/ -- There are three kinds of persons: Those who can count and those who can't. /// 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 ///