From: Richard M. Stallman Date: Tue, 20 Jul 1993 17:57:35 +0000 (+0000) Subject: (outline-mode-map): Delete spurious `outline-' X-Git-Tag: emacs-19.34~11664 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=32e612806b68fc56568158ad3501fb80c3d418f7;p=emacs.git (outline-mode-map): Delete spurious `outline-' from show and hide command names in menu. --- diff --git a/lisp/textmodes/ooutline.el b/lisp/textmodes/ooutline.el index 89b3774577e..006ab6ecdb3 100644 --- a/lisp/textmodes/ooutline.el +++ b/lisp/textmodes/ooutline.el @@ -61,27 +61,27 @@ in the file it applies to.") (cons "Hide" (make-sparse-keymap "Hide"))) (define-key outline-mode-map [menu-bar hide hide-subtree] - '("Hide Subtree" . outline-hide-subtree)) + '("Hide Subtree" . hide-subtree)) (define-key outline-mode-map [menu-bar hide hide-entry] - '("Hide Entry" . outline-hide-entry)) + '("Hide Entry" . hide-entry)) (define-key outline-mode-map [menu-bar hide hide-body] - '("Hide Body" . outline-hide-body)) + '("Hide Body" . hide-body)) (define-key outline-mode-map [menu-bar hide hide-leaves] - '("Hide Leaves" . outline-hide-leaves)) + '("Hide Leaves" . hide-leaves)) (define-key outline-mode-map [menu-bar show] (cons "Show" (make-sparse-keymap "Show"))) (define-key outline-mode-map [menu-bar show show-subtree] - '("Show Subtree" . outline-show-subtree)) + '("Show Subtree" . show-subtree)) (define-key outline-mode-map [menu-bar show show-children] - '("Show Children" . outline-show-children)) + '("Show Children" . show-children)) (define-key outline-mode-map [menu-bar show show-branches] - '("Show Branches" . outline-show-branches)) + '("Show Branches" . show-branches)) (define-key outline-mode-map [menu-bar show show-entry] - '("Show Entry" . outline-show-entry)) + '("Show Entry" . show-entry)) (define-key outline-mode-map [menu-bar show show-all] - '("Show All" . outline-show-all)) + '("Show All" . show-all)) (define-key outline-mode-map [menu-bar headings] (cons "Headings" (make-sparse-keymap "Headings")))