diff options
Diffstat (limited to 'src/sunfns.c')
| -rw-r--r-- | src/sunfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sunfns.c b/src/sunfns.c index 8fcf8bd507e..7c637e670f0 100644 --- a/src/sunfns.c +++ b/src/sunfns.c @@ -107,7 +107,7 @@ or -1 if can not open it.") char *cp; static int already_initialized = 0; - if ((! already_initialized) || (!NULL(force))) { + if ((! already_initialized) || (!NILP(force))) { cp = getenv("WINDOW_GFX"); if (cp != 0) win_fd = open(cp, 2); if (win_fd > 0) @@ -213,7 +213,7 @@ expressed as a string. If ICON is nil then the original arrow cursor is used") /* * If the icon is null, we just restore the DefaultCursor */ - if (NULL(Icon)) + if (NILP(Icon)) CurrentCursor = DefaultCursor; else { /* |
