Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
77814035
Commit
77814035
authored
Mar 21, 2002
by
Kim F. Storm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(QCtype): Remove duplicate declaration and
initialization (is now declared in process.c).
parent
9057ff80
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
src/w32fns.c
src/w32fns.c
+2
-4
src/xfns.c
src/xfns.c
+2
-4
No files found.
src/w32fns.c
View file @
77814035
...
...
@@ -8168,8 +8168,8 @@ Lisp_Object Qxbm;
/* Keywords. */
extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
extern Lisp_Object QCdata;
Lisp_Object
QCtype,
QCascent, QCmargin, QCrelief;
extern Lisp_Object QCdata
, QCtype
;
Lisp_Object QCascent, QCmargin, QCrelief;
Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask;
Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask;
...
...
@@ -15238,8 +15238,6 @@ versions of Windows) characters. */);
/* Images. */
Qxbm = intern ("xbm");
staticpro (&Qxbm);
QCtype = intern (":type");
staticpro (&QCtype);
QCconversion = intern (":conversion");
staticpro (&QCconversion);
QCheuristic_mask = intern (":heuristic-mask");
...
...
src/xfns.c
View file @
77814035
...
...
@@ -5455,8 +5455,8 @@ Lisp_Object Qxbm;
/* Keywords. */
extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
extern Lisp_Object QCdata;
Lisp_Object
QCtype,
QCascent, QCmargin, QCrelief;
extern Lisp_Object QCdata
, QCtype
;
Lisp_Object QCascent, QCmargin, QCrelief;
Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask;
Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask;
...
...
@@ -12121,8 +12121,6 @@ meaning don't clear the cache. */);
/* Images. */
Qxbm = intern ("xbm");
staticpro (&Qxbm);
QCtype = intern (":type");
staticpro (&QCtype);
QCconversion = intern (":conversion");
staticpro (&QCconversion);
QCheuristic_mask = intern (":heuristic-mask");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment