]> git.eshelyaron.com Git - emacs.git/commitdiff
Use NULL for NULL rather than false
authorPip Cet <pipcet@gmail.com>
Fri, 24 Nov 2017 18:07:49 +0000 (10:07 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 24 Nov 2017 18:10:42 +0000 (10:10 -0800)
* src/xdisp.c (x_draw_bottom_divider): Fix type typo.

src/xdisp.c

index 016e7044cafe024ff11e5ef58173583a94199f79..7e47c06c2d7dc053f690fb0d017bf10ba630638c 100644 (file)
@@ -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.  */