]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
authorDave Love <fx@gnu.org>
Fri, 22 Sep 2000 16:11:48 +0000 (16:11 +0000)
committerDave Love <fx@gnu.org>
Fri, 22 Sep 2000 16:11:48 +0000 (16:11 +0000)
a doc string.

src/xdisp.c

index 899e0d2fa9b44bce8e681fe4e5248d9e134b1bf9..c56cffa951dc06b0c6e6ada6426cb52466408eae 100644 (file)
@@ -357,7 +357,7 @@ Lisp_Object Vicon_title_format;
 
 static Lisp_Object Vwindow_size_change_functions;
 
-Lisp_Object Qmenu_bar_update_hook;
+Lisp_Object Qmenu_bar_update_hook, Vmenu_bar_update_hook;
 
 /* Nonzero if overlay arrow has been displayed once in this window.  */
 
@@ -13645,6 +13645,11 @@ Each element of the list is a symbol for a supported image type.");
     "If non-nil, messages are truncated instead of resizing the echo area.\n\
 Bind this around calls to `message' to let it take effect.");
   message_truncate_lines = 0;
+
+  DEFVAR_LISP ("menu-bar-update-hook",  &Vmenu_bar_update_hook,
+    "Normal hook run for clicks on menu bar, before displaying a submenu.\n\
+Can be used to update submenus whose contents should vary.");
+
 }