# HG changeset patch # User Gerd Moellmann # Date 936888869 0 # Node ID 1c991744ce139e668cb5d6d5020b0be53abdb5ef # Parent f25a14690a18b74e27cfe1e013ee956a78b2d8a3 (QCindex): New. (syms_of_xfns): Initialize QCindex. (gif_load): Use it instead of `:image'. diff -r f25a14690a18 -r 1c991744ce13 src/xfns.c --- a/src/xfns.c Thu Sep 09 14:54:28 1999 +0000 +++ b/src/xfns.c Thu Sep 09 14:54:29 1999 +0000 @@ -5451,7 +5451,7 @@ Lisp_Object QCtype, QCdata, QCfile, QCascent, QCmargin, QCrelief; extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground; Lisp_Object QCalgorithm, QCcolor_symbols, QCheuristic_mask; -extern Lisp_Object QCimage; +Lisp_Object QCindex; /* Other symbols. */ @@ -8869,7 +8869,7 @@ return 0; } - image = image_spec_value (img->spec, QCimage, NULL); + image = image_spec_value (img->spec, QCindex, NULL); ino = INTEGERP (image) ? XFASTINT (image) : 0; if (ino >= gif->ImageCount) { @@ -10400,6 +10400,8 @@ staticpro (&QCpt_width); QCpt_height = intern (":pt-height"); staticpro (&QCpt_height); + QCindex = intern (":index"); + staticpro (&QCindex); Qpbm = intern ("pbm"); staticpro (&Qpbm);