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:
parent
7df6adc3c7
commit
755a2ccd6e
2 changed files with 3 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue