comparison src/tag.c @ 10277:154d5a2e7395 v8.0.0035

commit https://github.com/vim/vim/commit/472e85970ee3a80abd824bef510df12e9cfe9e96 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 15 17:06:47 2016 +0200 patch 8.0.0035 Problem: Order of matches for 'omnifunc' is messed up. (Danny Su) Solution: Do not set compl_curr_match when called from complete_check(). (closes https://github.com/vim/vim/issues/1168)
author Christian Brabandt <cb@256bit.org>
date Sat, 15 Oct 2016 17:15:05 +0200
parents 95e9be4bc490
children 37a441352da2
comparison
equal deleted inserted replaced
10276:ac8a45a5cb0c 10277:154d5a2e7395
1585 else 1585 else
1586 #endif 1586 #endif
1587 fast_breakcheck(); 1587 fast_breakcheck();
1588 #ifdef FEAT_INS_EXPAND 1588 #ifdef FEAT_INS_EXPAND
1589 if ((flags & TAG_INS_COMP)) /* Double brackets for gcc */ 1589 if ((flags & TAG_INS_COMP)) /* Double brackets for gcc */
1590 ins_compl_check_keys(30); 1590 ins_compl_check_keys(30, FALSE);
1591 if (got_int || compl_interrupted) 1591 if (got_int || compl_interrupted)
1592 #else 1592 #else
1593 if (got_int) 1593 if (got_int)
1594 #endif 1594 #endif
1595 { 1595 {