aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2002-03-21 12:22:32 +0000
committerKim F. Storm2002-03-21 12:22:32 +0000
commit778140350cd3c2c9235112058b153b5002b012fb (patch)
tree27e6441fffbac27164efef8927acf67bf9230e76 /src
parent9057ff80bc70af618d8b199f498165c30b088d24 (diff)
downloademacs-778140350cd3c2c9235112058b153b5002b012fb.tar.gz
emacs-778140350cd3c2c9235112058b153b5002b012fb.zip
(QCtype): Remove duplicate declaration and
initialization (is now declared in process.c).
Diffstat (limited to 'src')
-rw-r--r--src/w32fns.c6
-rw-r--r--src/xfns.c6
2 files changed, 4 insertions, 8 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index 82767a029c1..4cf12d0f988 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -8168,8 +8168,8 @@ Lisp_Object Qxbm;
8168/* Keywords. */ 8168/* Keywords. */
8169 8169
8170extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile; 8170extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
8171extern Lisp_Object QCdata; 8171extern Lisp_Object QCdata, QCtype;
8172Lisp_Object QCtype, QCascent, QCmargin, QCrelief; 8172Lisp_Object QCascent, QCmargin, QCrelief;
8173Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask; 8173Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask;
8174Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask; 8174Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask;
8175 8175
@@ -15238,8 +15238,6 @@ versions of Windows) characters. */);
15238 /* Images. */ 15238 /* Images. */
15239 Qxbm = intern ("xbm"); 15239 Qxbm = intern ("xbm");
15240 staticpro (&Qxbm); 15240 staticpro (&Qxbm);
15241 QCtype = intern (":type");
15242 staticpro (&QCtype);
15243 QCconversion = intern (":conversion"); 15241 QCconversion = intern (":conversion");
15244 staticpro (&QCconversion); 15242 staticpro (&QCconversion);
15245 QCheuristic_mask = intern (":heuristic-mask"); 15243 QCheuristic_mask = intern (":heuristic-mask");
diff --git a/src/xfns.c b/src/xfns.c
index 07097837080..1f22f007ba5 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -5455,8 +5455,8 @@ Lisp_Object Qxbm;
5455/* Keywords. */ 5455/* Keywords. */
5456 5456
5457extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile; 5457extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
5458extern Lisp_Object QCdata; 5458extern Lisp_Object QCdata, QCtype;
5459Lisp_Object QCtype, QCascent, QCmargin, QCrelief; 5459Lisp_Object QCascent, QCmargin, QCrelief;
5460Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask; 5460Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask;
5461Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask; 5461Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask;
5462 5462
@@ -12121,8 +12121,6 @@ meaning don't clear the cache. */);
12121 /* Images. */ 12121 /* Images. */
12122 Qxbm = intern ("xbm"); 12122 Qxbm = intern ("xbm");
12123 staticpro (&Qxbm); 12123 staticpro (&Qxbm);
12124 QCtype = intern (":type");
12125 staticpro (&QCtype);
12126 QCconversion = intern (":conversion"); 12124 QCconversion = intern (":conversion");
12127 staticpro (&QCconversion); 12125 staticpro (&QCconversion);
12128 QCheuristic_mask = intern (":heuristic-mask"); 12126 QCheuristic_mask = intern (":heuristic-mask");