# HG changeset patch # User Richard M. Stallman # Date 767311801 0 # Node ID b473ea5a34737d3a8a879a9ec5a722448b866af7 # Parent b5844ebba56fe26c7dccbb040b7388254ef4b213 (struct frame): New fields menu_bar_vector and menu_bar_items_used. diff -r b5844ebba56f -r b473ea5a3473 src/frame.h --- a/src/frame.h Mon Apr 25 22:06:13 1994 +0000 +++ b/src/frame.h Mon Apr 25 22:10:01 1994 +0000 @@ -233,6 +233,13 @@ /* Nonnegative if current redisplay should not do scroll computation for lines beyond a certain vpos. This is the vpos. */ int scroll_bottom_vpos; + + /* A vector that records the entire structure of this frame's menu bar. + For the format of the data, see extensive comments in xmenu.c. + Only the X toolkit version uses this. */ + Lisp_Object menu_bar_vector; + /* Number of elements in the vector that have meaningful data. */ + int menu_bar_items_used; }; #ifdef MULTI_FRAME