diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-09-25 18:38:11 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-09-25 18:38:11 +0000 |
commit | ff9061179e2a01ec1b129480c464d65c41fbea97 (patch) | |
tree | dead5bcac615c635ee3a2e5dba297590f6b50b33 /src/alloc.c | |
parent | fb94a3f4337b5d3c3bfbad0ce864fb8b4a68ffea (diff) | |
download | emacs-ff9061179e2a01ec1b129480c464d65c41fbea97.tar.gz |
(mark_image): Use GC_NILP instead of NILP.
Diffstat (limited to 'src/alloc.c')
-rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 75466a787c7..5f08cd07d81 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -3769,7 +3769,7 @@ mark_image (img) { mark_object (&img->spec); - if (!NILP (img->data.lisp_val)) + if (!GC_NILP (img->data.lisp_val)) mark_object (&img->data.lisp_val); } |