# HG changeset patch # User Richard M. Stallman # Date 743191055 0 # Node ID b3df9c7072bbacbee0657397449d32acf3c4ef8a # Parent 45fc16fdf07eecba0016032d1e0fb48f3617637e (outline-mode-map): Delete spurious `outline-' from show and hide command names in menu. diff -r 45fc16fdf07e -r b3df9c7072bb lisp/textmodes/ooutline.el --- a/lisp/textmodes/ooutline.el Tue Jul 20 07:12:30 1993 +0000 +++ b/lisp/textmodes/ooutline.el Tue Jul 20 17:57:35 1993 +0000 @@ -61,27 +61,27 @@ (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")))