From a45a33097fc9f748a96226d6ebc2c872445348b0 Mon Sep 17 00:00:00 2001 From: Pip Cet Date: Fri, 24 Nov 2017 10:07:49 -0800 Subject: [PATCH] Use NULL for NULL rather than false * src/xdisp.c (x_draw_bottom_divider): Fix type typo. --- src/xdisp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index 016e7044caf..7e47c06c2d7 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -31872,7 +31872,7 @@ x_draw_bottom_divider (struct window *w) int x1 = WINDOW_RIGHT_EDGE_X (w); int y0 = WINDOW_BOTTOM_EDGE_Y (w) - WINDOW_BOTTOM_DIVIDER_WIDTH (w); int y1 = WINDOW_BOTTOM_EDGE_Y (w); - struct window *p = !NILP (w->parent) ? XWINDOW (w->parent) : false; + struct window *p = !NILP (w->parent) ? XWINDOW (w->parent) : NULL; /* If W is vertically combined and has a sibling below, don't draw over any right divider. */ -- 2.39.2