emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master a45a330: Use NULL for NULL rather than false


From: Paul Eggert
Subject: [Emacs-diffs] master a45a330: Use NULL for NULL rather than false
Date: Fri, 24 Nov 2017 13:10:49 -0500 (EST)

branch: master
commit a45a33097fc9f748a96226d6ebc2c872445348b0
Author: Pip Cet <address@hidden>
Commit: Paul Eggert <address@hidden>

    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 016e704..7e47c06 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.  */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]