From eac5f78117b07c76eb725a4653b5d8f70382c165 Mon Sep 17 00:00:00 2001 From: Pip Cet Date: Fri, 24 Nov 2017 08:33:22 +0000 Subject: [PATCH] Use NULL for NULL rather than false. --- 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.15.0.rc2