diff options
| author | Jan Djärv | 2006-05-29 07:16:54 +0000 |
|---|---|---|
| committer | Jan Djärv | 2006-05-29 07:16:54 +0000 |
| commit | e380957ec2e24b8e6ad1a10aa40a95aa96b20ff2 (patch) | |
| tree | 5925cf4c07a82cb0a40a937f82a6e2e0c4e4596d | |
| parent | 974bed98c1baa95e7ef4ad4bac31bad50da5c16e (diff) | |
| download | emacs-e380957ec2e24b8e6ad1a10aa40a95aa96b20ff2.tar.gz emacs-e380957ec2e24b8e6ad1a10aa40a95aa96b20ff2.zip | |
* term/x-win.el: bind F10 to menu-bar-start if available.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/term/x-win.el | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 08304facfaf..9f850eeb3ab 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-05-29 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * term/x-win.el: bind F10 to menu-bar-start if available. | ||
| 4 | |||
| 1 | 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu> | 5 | 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 6 | ||
| 3 | * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace | 7 | * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace |
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index 4fb6781b615..ab16bb7dfaf 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el | |||
| @@ -2516,5 +2516,9 @@ order until succeed.") | |||
| 2516 | (add-hook 'after-make-frame-functions 'x-dnd-init-frame) | 2516 | (add-hook 'after-make-frame-functions 'x-dnd-init-frame) |
| 2517 | (global-set-key [drag-n-drop] 'x-dnd-handle-drag-n-drop-event) | 2517 | (global-set-key [drag-n-drop] 'x-dnd-handle-drag-n-drop-event) |
| 2518 | 2518 | ||
| 2519 | ;; Let F10 do menu bar navigation. | ||
| 2520 | (and (fboundp 'menu-bar-start) | ||
| 2521 | (global-set-key [f10] 'menu-bar-start)) | ||
| 2522 | |||
| 2519 | ;; arch-tag: f1501302-db8b-4d95-88e3-116697d89f78 | 2523 | ;; arch-tag: f1501302-db8b-4d95-88e3-116697d89f78 |
| 2520 | ;;; x-win.el ends here | 2524 | ;;; x-win.el ends here |