summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-07-20 17:57:35 +0000
committerRichard M. Stallman <rms@gnu.org>1993-07-20 17:57:35 +0000
commit32e612806b68fc56568158ad3501fb80c3d418f7 (patch)
tree378e59f64c4e97748b76216798dfa183f22e559e
parent93fe0a356ffaee742995e36ad4d5051a21aedf9e (diff)
downloademacs-32e612806b68fc56568158ad3501fb80c3d418f7.tar.gz
(outline-mode-map): Delete spurious `outline-'
from show and hide command names in menu.
-rw-r--r--lisp/textmodes/ooutline.el18
1 files changed, 9 insertions, 9 deletions
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")))