diff options
| author | Pip Cet | 2017-11-24 10:07:49 -0800 |
|---|---|---|
| committer | Paul Eggert | 2017-11-24 10:10:42 -0800 |
| commit | a45a33097fc9f748a96226d6ebc2c872445348b0 (patch) | |
| tree | 30fdd7a82941b66ab516891a66cdf8b1139724de /src | |
| parent | 4f779ff8e6445d9b46a87f494396ccb5f72b0350 (diff) | |
| download | emacs-a45a33097fc9f748a96226d6ebc2c872445348b0.tar.gz emacs-a45a33097fc9f748a96226d6ebc2c872445348b0.zip | |
Use NULL for NULL rather than false
* src/xdisp.c (x_draw_bottom_divider): Fix type typo.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 31872 | int x1 = WINDOW_RIGHT_EDGE_X (w); | 31872 | int x1 = WINDOW_RIGHT_EDGE_X (w); |
| 31873 | int y0 = WINDOW_BOTTOM_EDGE_Y (w) - WINDOW_BOTTOM_DIVIDER_WIDTH (w); | 31873 | int y0 = WINDOW_BOTTOM_EDGE_Y (w) - WINDOW_BOTTOM_DIVIDER_WIDTH (w); |
| 31874 | int y1 = WINDOW_BOTTOM_EDGE_Y (w); | 31874 | int y1 = WINDOW_BOTTOM_EDGE_Y (w); |
| 31875 | struct window *p = !NILP (w->parent) ? XWINDOW (w->parent) : false; | 31875 | struct window *p = !NILP (w->parent) ? XWINDOW (w->parent) : NULL; |
| 31876 | 31876 | ||
| 31877 | /* If W is vertically combined and has a sibling below, don't draw | 31877 | /* If W is vertically combined and has a sibling below, don't draw |
| 31878 | over any right divider. */ | 31878 | over any right divider. */ |