changeset 4187:b3df9c7072bb

(outline-mode-map): Delete spurious `outline-' from show and hide command names in menu.
author Richard M. Stallman <rms@gnu.org>
date Tue, 20 Jul 1993 17:57:35 +0000
parents 45fc16fdf07e
children 10fd517cb2e9
files lisp/textmodes/ooutline.el
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- 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")))