From 7c1bfeccb0d3c330fee1a3628784da157f5e75c2 Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Fri, 31 Aug 2007 15:39:18 +0000 Subject: [PATCH] (x-menu-bar-open): Delete duplicated function from the merge. (global-set-key): Delete f10 mapping, now done in menu-bar.el. (provide): Move to the end of file. --- lisp/ChangeLog | 5 +++++ lisp/term/x-win.el | 14 ++------------ 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c63c019d5ab..84fca465933 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,10 @@ 2007-08-31 Dan Nicolaescu + * term/x-win.el (x-menu-bar-open): Delete duplicated function from + the merge. + (global-set-key): Delete f10 mapping, now done in menu-bar.el. + (provide): Move to the end of file. + * vc-svn.el (vc-svn-diff-tree): Pass a list to vc-svn-diff. 2007-08-31 Micha,Ak(Bl Cadilhac diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index de0d99ab3c0..bde34f4b0d1 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -2561,22 +2561,10 @@ order until succeed.") (add-to-list 'frame-creation-function-alist '(x . x-create-frame-with-faces)) (add-to-list 'window-system-initialization-alist '(x . x-initialize-window-system)) -(provide 'x-win) - ;; Initiate drag and drop (add-hook 'after-make-frame-functions 'x-dnd-init-frame) (define-key special-event-map [drag-n-drop] 'x-dnd-handle-drag-n-drop-event) -;; Let F10 do menu bar navigation. -(defun x-menu-bar-open (&optional frame) - "Open the menu bar if `menu-bar-mode' is on. otherwise call `tmm-menubar'." - (interactive "i") - (if menu-bar-mode (menu-bar-open frame) - (tmm-menubar))) - -(and (fboundp 'menu-bar-open) - (global-set-key [f10] 'x-menu-bar-open)) - (defcustom x-gtk-stock-map '( ("etc/images/new" . "gtk-new") @@ -2614,5 +2602,7 @@ Emacs must be compiled with the Gtk+ toolkit for this to have any effect." (value (assoc-string (or key file-sans) x-gtk-stock-map))) (and value (cdr value)))) +(provide 'x-win) + ;; arch-tag: f1501302-db8b-4d95-88e3-116697d89f78 ;;; x-win.el ends here -- 2.11.4.GIT