comparison src/eval.c @ 11412:84baca75b7f2 v8.0.0590

patch 8.0.0590: cannot add a context to locations commit https://github.com/vim/vim/commit/8f77c5a4ec756f3f866bd6b18feb6fca6f2a2e91 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 30 14:21:00 2017 +0200 patch 8.0.0590: cannot add a context to locations Problem: Cannot add a context to locations. Solution: Add the "context" entry in location entries. (Yegappan Lakshmanan, closes #1012)
author Christian Brabandt <cb@256bit.org>
date Sun, 30 Apr 2017 14:30:04 +0200
parents 3e799a37ea22
children 162bcd0debd7
comparison
equal deleted inserted replaced
11411:ab53b2f7ffc3 11412:84baca75b7f2
5325 5325
5326 #ifdef FEAT_TIMERS 5326 #ifdef FEAT_TIMERS
5327 abort = abort || set_ref_in_timer(copyID); 5327 abort = abort || set_ref_in_timer(copyID);
5328 #endif 5328 #endif
5329 5329
5330 #ifdef FEAT_QUICKFIX
5331 abort = abort || set_ref_in_quickfix(copyID);
5332 #endif
5333
5330 if (!abort) 5334 if (!abort)
5331 { 5335 {
5332 /* 5336 /*
5333 * 2. Free lists and dictionaries that are not referenced. 5337 * 2. Free lists and dictionaries that are not referenced.
5334 */ 5338 */