aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-25 22:10:01 +0000
committerRichard M. Stallman1994-04-25 22:10:01 +0000
commit8d6de7cea6237ac32989f1710af4bda10194a142 (patch)
tree8e20d44719595a07403c23c50e3617b0139f7e55 /src
parentafb66a9aa83c6ff9b97d79d90fabbdf75c3aad8e (diff)
downloademacs-8d6de7cea6237ac32989f1710af4bda10194a142.tar.gz
emacs-8d6de7cea6237ac32989f1710af4bda10194a142.zip
(struct frame): New fields menu_bar_vector and menu_bar_items_used.
Diffstat (limited to 'src')
-rw-r--r--src/frame.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h
index 364d8ffdf95..78cd1abc4f7 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -233,6 +233,13 @@ struct frame
233 /* Nonnegative if current redisplay should not do scroll computation 233 /* Nonnegative if current redisplay should not do scroll computation
234 for lines beyond a certain vpos. This is the vpos. */ 234 for lines beyond a certain vpos. This is the vpos. */
235 int scroll_bottom_vpos; 235 int scroll_bottom_vpos;
236
237 /* A vector that records the entire structure of this frame's menu bar.
238 For the format of the data, see extensive comments in xmenu.c.
239 Only the X toolkit version uses this. */
240 Lisp_Object menu_bar_vector;
241 /* Number of elements in the vector that have meaningful data. */
242 int menu_bar_items_used;
236}; 243};
237 244
238#ifdef MULTI_FRAME 245#ifdef MULTI_FRAME