# HG changeset patch # User Eli Zaretskii # Date 1183807053 0 # Node ID c7c25a292d1a31d23e0f3c008ecaff7d244413ce # Parent e75a9a5b8536d482774ba4f1e462e76fe881ccb5 (menu-bar-open): New function. Bind to it. diff -r e75a9a5b8536 -r c7c25a292d1a lisp/term/w32-win.el --- a/lisp/term/w32-win.el Sat Jul 07 11:17:03 2007 +0000 +++ b/lisp/term/w32-win.el Sat Jul 07 11:17:33 2007 +0000 @@ -1041,8 +1041,18 @@ ;;; make f10 activate the real menubar rather than the mini-buffer menu ;;; navigation feature. -(global-set-key [f10] (lambda () - (interactive) (w32-send-sys-command ?\xf100))) +(defun menu-bar-open (&optional frame) + "Start key navigation of the menu bar in FRAME. + +This initially activates the first menu-bar item, and you can then navigate +with the arrow keys, select a menu entry with the Return key or cancel with +the Escape key. If FRAME has no menu bar, this function does nothing. + +If FRAME is nil or not given, use the selected frame." + (interactive "i") + (w32-send-sys-command ?\xf100 frame)) +; +(global-set-key [f10] 'menu-bar-open) (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame global-map)