aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorGerd Moellmann2000-09-25 18:38:44 +0000
committerGerd Moellmann2000-09-25 18:38:44 +0000
commit755a2ccd6e0bd1b9ee90bf3d1f5fa80261cb0395 (patch)
tree47c897bebc6f7699db16872b01b3e63408842e91 /src/alloc.c
parent7df6adc3c778856d94b9d78681c5f71851834bc7 (diff)
downloademacs-755a2ccd6e0bd1b9ee90bf3d1f5fa80261cb0395.tar.gz
emacs-755a2ccd6e0bd1b9ee90bf3d1f5fa80261cb0395.zip
(mark_image): Use GC_NILP instead of NILP.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
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)
3769{ 3769{
3770 mark_object (&img->spec); 3770 mark_object (&img->spec);
3771 3771
3772 if (!NILP (img->data.lisp_val)) 3772 if (!GC_NILP (img->data.lisp_val))
3773 mark_object (&img->data.lisp_val); 3773 mark_object (&img->data.lisp_val);
3774} 3774}
3775 3775