summaryrefslogtreecommitdiff
path: root/src/quickfix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-11-06 15:25:42 +0100
committerBram Moolenaar <Bram@vim.org>2016-11-06 15:25:42 +0100
commita1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660 (patch)
treef2b42367e5ced2e5c070683fafb1a75b360086c4 /src/quickfix.c
parent25de4c232d580583feadae11ab34e3cc6333c350 (diff)
downloadvim-git-a1f4cb93ba50ea9e40cd4b1f5592b8a6d1398660.tar.gz
patch 8.0.0069v8.0.0069
Problem: Compiler warning for self-comparison. Solution: Define ONE_WINDOW and add #ifdef.
Diffstat (limited to 'src/quickfix.c')
-rw-r--r--src/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index c3def1bc0..a45faeaa9 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -2137,7 +2137,7 @@ win_found:
* If there is only one window and it is the quickfix window, create a
* new one above the quickfix window.
*/
- if (((firstwin == lastwin) && bt_quickfix(curbuf)) || !usable_win)
+ if ((ONE_WINDOW && bt_quickfix(curbuf)) || !usable_win)
{
flags = WSP_ABOVE;
if (ll_ref != NULL)