1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 11:50:51 -08:00

(mark_image): Use GC_NILP instead of NILP.

This commit is contained in:
Gerd Moellmann 2000-09-25 18:38:44 +00:00
parent 7df6adc3c7
commit 755a2ccd6e
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2000-09-25 Gerd Moellmann <gerd@gnu.org>
* alloc.c (mark_image): Use GC_NILP instead of NILP.
* keyboard.c (show_help_echo): Set help_echo_showing_p.
(read_char): If help-echo is showing, preserve the echo area
when redisplaying.

View file

@ -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);
}