# HG changeset patch # User Dan Nicolaescu # Date 1188574758 0 # Node ID 8404d44e8ab8ad61886f8b334a9df7e1e8423e94 # Parent 86c05b1c8884e657983d3e2fc4afc18b0646ef49 (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. diff -r 86c05b1c8884 -r 8404d44e8ab8 lisp/ChangeLog --- a/lisp/ChangeLog Fri Aug 31 14:07:49 2007 +0000 +++ b/lisp/ChangeLog Fri Aug 31 15:39:18 2007 +0000 @@ -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 -r 86c05b1c8884 -r 8404d44e8ab8 lisp/term/x-win.el --- a/lisp/term/x-win.el Fri Aug 31 14:07:49 2007 +0000 +++ b/lisp/term/x-win.el Fri Aug 31 15:39:18 2007 +0000 @@ -2561,22 +2561,10 @@ (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 @@ (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