comparison src/evalfunc.c @ 13921:3b6c29f8c1a2 v8.0.1831

patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':' commit https://github.com/vim/vim/commit/8b62e31003693fee4b288e7aea49170f032aeef3 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 13 15:29:04 2018 +0200 patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':' Problem: Sometimes the quickfix title is incorrectly prefixed with ':'. Solution: Prepend the colon in another way. (Yegappan Lakshmanan, closes #2905)
author Christian Brabandt <cb@256bit.org>
date Sun, 13 May 2018 15:30:07 +0200
parents 4b35f2835ce4
children 4a41a169e5ea
comparison
equal deleted inserted replaced
13920:ceb452a8cfd8 13921:3b6c29f8c1a2
10471 valid_dict = FALSE; 10471 valid_dict = FALSE;
10472 } 10472 }
10473 } 10473 }
10474 10474
10475 if (l != NULL && action && valid_dict && set_errorlist(wp, l, action, 10475 if (l != NULL && action && valid_dict && set_errorlist(wp, l, action,
10476 (char_u *)(wp == NULL ? "setqflist()" : "setloclist()"), d) == OK) 10476 (char_u *)(wp == NULL ? ":setqflist()" : ":setloclist()"), d) == OK)
10477 rettv->vval.v_number = 0; 10477 rettv->vval.v_number = 0;
10478 } 10478 }
10479 #endif 10479 #endif
10480 } 10480 }
10481 10481