diff options
| author | Gerd Moellmann | 2001-10-05 09:52:23 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-10-05 09:52:23 +0000 |
| commit | 36d8561d49cf066c6dbd69cf949561983a3ee790 (patch) | |
| tree | 36b15aafeaa5c4ad2688b57712bf5717ad48e8a8 /src | |
| parent | a97569cbf284dc18f285174194de1fa55cc3ee3a (diff) | |
| download | emacs-36d8561d49cf066c6dbd69cf949561983a3ee790.tar.gz emacs-36d8561d49cf066c6dbd69cf949561983a3ee790.zip | |
(MINI_WINDOW_P): Use NILP.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h index 36ca6811d5e..da72e302110 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -279,7 +279,7 @@ struct window | |||
| 279 | 279 | ||
| 280 | /* 1 if W is a minibuffer window. */ | 280 | /* 1 if W is a minibuffer window. */ |
| 281 | 281 | ||
| 282 | #define MINI_WINDOW_P(W) (!EQ ((W)->mini_p, Qnil)) | 282 | #define MINI_WINDOW_P(W) (!NILP ((W)->mini_p)) |
| 283 | 283 | ||
| 284 | /* Return the window column at which the text in window W starts. | 284 | /* Return the window column at which the text in window W starts. |
| 285 | This is different from the `left' field because it does not include | 285 | This is different from the `left' field because it does not include |