Skip to content

Commit 61eeeea

Browse files
committed
patch 8.1.1549: quickfix test fails
Problem: Quickfix test fails. Solution: Negate result of bt_quickfix().
1 parent a42d945 commit 61eeeea

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/quickfix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4135,7 +4135,7 @@ qf_open_new_cwindow(qf_info_T *qi, int height)
41354135
// Set the options for the quickfix buffer/window (if not already done)
41364136
// Do this even if the quickfix buffer was already present, as an autocmd
41374137
// might have previously deleted (:bdelete) the quickfix buffer.
4138-
if (bt_quickfix(curbuf))
4138+
if (!bt_quickfix(curbuf))
41394139
qf_set_cwindow_options();
41404140

41414141
// Only set the height when still in the same tab page and there is no

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,8 @@ static char *(features[]) =
777777

778778
static int included_patches[] =
779779
{ /* Add new patch number below this line */
780+
/**/
781+
1549,
780782
/**/
781783
1548,
782784
/**/

0 commit comments

Comments
 (0)