summaryrefslogtreecommitdiff
path: root/src/frame.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-03-28 05:24:23 +0000
committerRichard M. Stallman <rms@gnu.org>1993-03-28 05:24:23 +0000
commita78b5fe5561bea835783570a311f7b56ff47986f (patch)
tree7055a249ea8885f7e85b1beab8af87e95c418045 /src/frame.h
parent590370729efbad185a79d61415a1686e15e6589c (diff)
downloademacs-a78b5fe5561bea835783570a311f7b56ff47986f.tar.gz
(struct frame): New field face_alist.
Diffstat (limited to 'src/frame.h')
-rw-r--r--src/frame.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h
index 0f7ac736545..0ec28119bce 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -132,8 +132,14 @@ struct frame
Lisp_Object scroll_bars;
Lisp_Object condemned_scroll_bars;
+ /* List of elements to display in the menu bar.
+ The elements have the form (KEY STRING . nil) to start;
+ when they are displayed, the hpos of the left edge goes in the cddr. */
Lisp_Object menu_bar_items;
+ /* Alist of elements (FACE-NAME . FACE-VECTOR-DATA). */
+ Lisp_Object face_alist;
+
/* The output method says how the contents of this frame
are displayed. It could be using termcap, or using an X window. */
enum output_method output_method;