# HG changeset patch # User Jan Dj¸«£rv # Date 1148887014 0 # Node ID f652878dc6173ba12ad4f501fbb454345cf793a4 # Parent 99c0a22860dc6e280c694684cd508c6d64bdc638 * term/x-win.el: bind F10 to menu-bar-start if available. diff -r 99c0a22860dc -r f652878dc617 lisp/ChangeLog --- a/lisp/ChangeLog Mon May 29 07:15:22 2006 +0000 +++ b/lisp/ChangeLog Mon May 29 07:16:54 2006 +0000 @@ -1,3 +1,7 @@ +2006-05-29 Jan Dj,Ad(Brv + + * term/x-win.el: bind F10 to menu-bar-start if available. + 2006-05-28 Dan Nicolaescu * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace diff -r 99c0a22860dc -r f652878dc617 lisp/term/x-win.el --- a/lisp/term/x-win.el Mon May 29 07:15:22 2006 +0000 +++ b/lisp/term/x-win.el Mon May 29 07:16:54 2006 +0000 @@ -2516,5 +2516,9 @@ (add-hook 'after-make-frame-functions 'x-dnd-init-frame) (global-set-key [drag-n-drop] 'x-dnd-handle-drag-n-drop-event) +;; Let F10 do menu bar navigation. +(and (fboundp 'menu-bar-start) + (global-set-key [f10] 'menu-bar-start)) + ;; arch-tag: f1501302-db8b-4d95-88e3-116697d89f78 ;;; x-win.el ends here