From: Pip Cet Date: Fri, 24 Nov 2017 18:07:49 +0000 (-0800) Subject: Use NULL for NULL rather than false X-Git-Tag: emacs-27.0.90~6131 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a45a33097fc9f748a96226d6ebc2c872445348b0;p=emacs.git Use NULL for NULL rather than false * src/xdisp.c (x_draw_bottom_divider): Fix type typo. --- 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. */