diff options
| author | Richard M. Stallman | 1993-03-28 05:24:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-03-28 05:24:23 +0000 |
| commit | fb63ba7de511009bf6e4428f7df9968bf2a24b78 (patch) | |
| tree | b55aeda1b4b6f819aae9deb8ddeeb74e6855854b /src | |
| parent | 4208730106e08bdf945c93d24bb7466ed0b6f87d (diff) | |
| download | emacs-fb63ba7de511009bf6e4428f7df9968bf2a24b78.tar.gz emacs-fb63ba7de511009bf6e4428f7df9968bf2a24b78.zip | |
(struct frame): New field face_alist.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.h | 6 |
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 | |||
| 132 | Lisp_Object scroll_bars; | 132 | Lisp_Object scroll_bars; |
| 133 | Lisp_Object condemned_scroll_bars; | 133 | Lisp_Object condemned_scroll_bars; |
| 134 | 134 | ||
| 135 | /* List of elements to display in the menu bar. | ||
| 136 | The elements have the form (KEY STRING . nil) to start; | ||
| 137 | when they are displayed, the hpos of the left edge goes in the cddr. */ | ||
| 135 | Lisp_Object menu_bar_items; | 138 | Lisp_Object menu_bar_items; |
| 136 | 139 | ||
| 140 | /* Alist of elements (FACE-NAME . FACE-VECTOR-DATA). */ | ||
| 141 | Lisp_Object face_alist; | ||
| 142 | |||
| 137 | /* The output method says how the contents of this frame | 143 | /* The output method says how the contents of this frame |
| 138 | are displayed. It could be using termcap, or using an X window. */ | 144 | are displayed. It could be using termcap, or using an X window. */ |
| 139 | enum output_method output_method; | 145 | enum output_method output_method; |