From 6aa37b26b85d254a3bd3053792256d924479d72e Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 6 Dec 2015 14:58:24 -0800 Subject: [PATCH] Pacify gcc -Wparentheses * src/xdisp.c (row_containing_pos): Reparenthesize. --- src/xdisp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index 3930cbf8fe8..68e9cfb450c 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -17801,7 +17801,7 @@ row_containing_pos (struct window *w, ptrdiff_t charpos, while (true) { /* Give up if we have gone too far. */ - if (end && row >= end || !row->enabled_p) + if ((end && row >= end) || !row->enabled_p) return NULL; /* This formerly returned if they were equal. I think that both quantities are of a "last plus one" type; -- 2.39.2