From: Chong Yidong Date: Tue, 28 Dec 2010 09:39:25 +0000 (+0800) Subject: Fix 2010-12-20 change to tool-bar.el. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~1322^2~278^2~56 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c940c05468b5ab2a203bd8043f0d4f4f3bf56958;p=emacs.git Fix 2010-12-20 change to tool-bar.el. * tool-bar.el (tool-bar-setup): Remove :enable conditions, which are handled by the menu-bar entries. As before, don't use :visibile to avoid changing the tool-bar. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d4023ba55cd..c0ec2bb8ae1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2010-12-28 Chong Yidong + + * tool-bar.el (tool-bar-setup): Remove :enable conditions, which + are handled by the menu-bar entries. As before, don't use + :visibile to avoid changing the tool-bar. + 2010-12-27 Michael Albinus * net/secrets.el (secrets-delete-alias): New defun. diff --git a/lisp/tool-bar.el b/lisp/tool-bar.el index e819cbe99a8..fa16381bf29 100644 --- a/lisp/tool-bar.el +++ b/lisp/tool-bar.el @@ -252,26 +252,16 @@ holds a keymap." (tool-bar-add-item-from-menu 'dired "diropen" nil :vert-only t) (tool-bar-add-item-from-menu 'kill-this-buffer "close" nil :vert-only t) (tool-bar-add-item-from-menu 'save-buffer "save" nil - :label "Save" - :enable '(or buffer-file-name - (not (eq 'special - (get major-mode - 'mode-class))))) + :label "Save") (define-key-after (default-value 'tool-bar-map) [separator-1] menu-bar-separator) - (tool-bar-add-item-from-menu 'undo "undo" nil :vert-only t - :enable '(not (eq 'special (get major-mode - 'mode-class)))) + (tool-bar-add-item-from-menu 'undo "undo" nil :vert-only t) (define-key-after (default-value 'tool-bar-map) [separator-2] menu-bar-separator) (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [cut]) - "cut" nil :vert-only t - :enable '(not (eq 'special (get major-mode - 'mode-class)))) + "cut" nil :vert-only t) (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [copy]) "copy" nil :vert-only t) (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [paste]) - "paste" nil :vert-only t - :enable '(not (eq 'special (get major-mode - 'mode-class)))) + "paste" nil :vert-only t) (define-key-after (default-value 'tool-bar-map) [separator-3] menu-bar-separator) (tool-bar-add-item-from-menu 'nonincremental-search-forward "search" nil :label "Search")