comparison src/eval.c @ 7285:a34232b17763 v7.4.948

commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 3 13:52:52 2015 +0100 patch 7.4.948 Problem: Can't build when the insert_expand feature is disabled. Solution: Add #ifdefs. (Dan Pasanen, closes https://github.com/vim/vim/issues/499)
author Christian Brabandt <cb@256bit.org>
date Thu, 03 Dec 2015 14:00:06 +0100
parents 2a4593702d5c
children 32efe489afc5
comparison
equal deleted inserted replaced
7284:29724a179eaf 7285:a34232b17763
8746 * Call the user function. 8746 * Call the user function.
8747 * Save and restore search patterns, script variables and 8747 * Save and restore search patterns, script variables and
8748 * redo buffer. 8748 * redo buffer.
8749 */ 8749 */
8750 save_search_patterns(); 8750 save_search_patterns();
8751 #ifdef FEAT_INS_EXPAND
8751 if (!ins_compl_active()) 8752 if (!ins_compl_active())
8753 #endif
8752 { 8754 {
8753 saveRedobuff(); 8755 saveRedobuff();
8754 did_save_redo = TRUE; 8756 did_save_redo = TRUE;
8755 } 8757 }
8756 ++fp->uf_calls; 8758 ++fp->uf_calls;