comparison src/insexpand.c @ 22726:768f72ca8872 v8.2.1911

patch 8.2.1911: tiny build fails Commit: https://github.com/vim/vim/commit/977fd0b327ed46a71c80d2cd62cbe149d43b9a69 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 27 09:12:45 2020 +0100 patch 8.2.1911: tiny build fails Problem: Tiny build fails. Solution: Add #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Tue, 27 Oct 2020 09:15:04 +0100
parents bd61aaf7f2a0
children f7f2d73ff85e
comparison
equal deleted inserted replaced
22725:4f40cc0fea4c 22726:768f72ca8872
4065 edit_submode_highl = HLF_COUNT; 4065 edit_submode_highl = HLF_COUNT;
4066 compl_curr_match->cp_number = 1; 4066 compl_curr_match->cp_number = 1;
4067 } 4067 }
4068 else 4068 else
4069 { 4069 {
4070 #if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL)
4070 // Update completion sequence number when needed. 4071 // Update completion sequence number when needed.
4071 if (compl_curr_match->cp_number == -1) 4072 if (compl_curr_match->cp_number == -1)
4072 ins_compl_update_sequence_numbers(); 4073 ins_compl_update_sequence_numbers();
4073 4074 #endif
4074 // The match should always have a sequence number now, this is 4075 // The match should always have a sequence number now, this is
4075 // just a safety check. 4076 // just a safety check.
4076 if (compl_curr_match->cp_number != -1) 4077 if (compl_curr_match->cp_number != -1)
4077 { 4078 {
4078 // Space for 10 text chars. + 2x10-digit no.s = 31. 4079 // Space for 10 text chars. + 2x10-digit no.s = 31.