aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-11-24 14:38:09 +0000
committerDave Love1999-11-24 14:38:09 +0000
commitfb4927c45dce0d0a38fbdbfd3fbd8bc6978c863a (patch)
tree1990eaddaebb0f91dadec7229475a34e0d6925b6
parent35a8911d3950448a8c199eec2030e2e2c066132f (diff)
downloademacs-fb4927c45dce0d0a38fbdbfd3fbd8bc6978c863a.tar.gz
emacs-fb4927c45dce0d0a38fbdbfd3fbd8bc6978c863a.zip
Don't duplicate Qmode_line definition done elsewhere.
-rw-r--r--src/xfaces.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 52b9f1b5841..9004a2d65e9 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -288,8 +288,9 @@ Lisp_Object Qframe_update_face_colors;
288 288
289/* Names of basic faces. */ 289/* Names of basic faces. */
290 290
291Lisp_Object Qdefault, Qmode_line, Qtool_bar, Qregion, Qfringe; 291Lisp_Object Qdefault, Qtool_bar, Qregion, Qfringe;
292Lisp_Object Qheader_line, Qscroll_bar, Qcursor, Qborder, Qmouse, Qmenu; 292Lisp_Object Qheader_line, Qscroll_bar, Qcursor, Qborder, Qmouse, Qmenu;
293extern Lisp_Object Qmode_line;
293 294
294/* The symbol `face-alias'. A symbols having that property is an 295/* The symbol `face-alias'. A symbols having that property is an
295 alias for another face. Value of the property is the name of 296 alias for another face. Value of the property is the name of
@@ -6580,8 +6581,6 @@ syms_of_xfaces ()
6580 staticpro (&Qface_alias); 6581 staticpro (&Qface_alias);
6581 Qdefault = intern ("default"); 6582 Qdefault = intern ("default");
6582 staticpro (&Qdefault); 6583 staticpro (&Qdefault);
6583 Qmode_line = intern ("mode-line");
6584 staticpro (&Qmode_line);
6585 Qtool_bar = intern ("tool-bar"); 6584 Qtool_bar = intern ("tool-bar");
6586 staticpro (&Qtool_bar); 6585 staticpro (&Qtool_bar);
6587 Qregion = intern ("region"); 6586 Qregion = intern ("region");