aboutsummaryrefslogtreecommitdiffstats
path: root/src/image.c
diff options
context:
space:
mode:
authorMiles Bader2007-11-11 00:56:44 +0000
committerMiles Bader2007-11-11 00:56:44 +0000
commitf23d76bdefbd4c06e14d69e99e50d35ce91c8226 (patch)
treeded28d1da6df2d0135514bac83074f4ca1c9099a /src/image.c
parente2d092da5980a7d05a5428074f8eb4925fa801e8 (diff)
parenta457417ee5ba797ab1c91d35ee957bb7a7f8d4b6 (diff)
downloademacs-f23d76bdefbd4c06e14d69e99e50d35ce91c8226.tar.gz
emacs-f23d76bdefbd4c06e14d69e99e50d35ce91c8226.zip
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-283
Diffstat (limited to 'src/image.c')
-rw-r--r--src/image.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/image.c b/src/image.c
index 33d5e1a9b2d..91be3f4b57e 100644
--- a/src/image.c
+++ b/src/image.c
@@ -733,9 +733,9 @@ Lisp_Object Qxbm;
733/* Keywords. */ 733/* Keywords. */
734 734
735extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile; 735extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
736extern Lisp_Object QCdata, QCtype, Qcount; 736extern Lisp_Object QCdata, QCtype;
737extern Lisp_Object Qcenter; 737extern Lisp_Object Qcenter;
738Lisp_Object QCascent, QCmargin, QCrelief; 738Lisp_Object QCascent, QCmargin, QCrelief, Qcount;
739Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask; 739Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask;
740Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask; 740Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask;
741 741
@@ -9089,6 +9089,9 @@ non-numeric, there is no explicit limit on the size of images. */);
9089 define_image_type (&xbm_type, 1); 9089 define_image_type (&xbm_type, 1);
9090 define_image_type (&pbm_type, 1); 9090 define_image_type (&pbm_type, 1);
9091 9091
9092 Qcount = intern ("count");
9093 staticpro (&Qcount);
9094
9092 QCascent = intern (":ascent"); 9095 QCascent = intern (":ascent");
9093 staticpro (&QCascent); 9096 staticpro (&QCascent);
9094 QCmargin = intern (":margin"); 9097 QCmargin = intern (":margin");