aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-20 17:57:35 +0000
committerRichard M. Stallman1993-07-20 17:57:35 +0000
commit32e612806b68fc56568158ad3501fb80c3d418f7 (patch)
tree378e59f64c4e97748b76216798dfa183f22e559e
parent93fe0a356ffaee742995e36ad4d5051a21aedf9e (diff)
downloademacs-32e612806b68fc56568158ad3501fb80c3d418f7.tar.gz
emacs-32e612806b68fc56568158ad3501fb80c3d418f7.zip
(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.")
61 (cons "Hide" (make-sparse-keymap "Hide"))) 61 (cons "Hide" (make-sparse-keymap "Hide")))
62 62
63 (define-key outline-mode-map [menu-bar hide hide-subtree] 63 (define-key outline-mode-map [menu-bar hide hide-subtree]
64 '("Hide Subtree" . outline-hide-subtree)) 64 '("Hide Subtree" . hide-subtree))
65 (define-key outline-mode-map [menu-bar hide hide-entry] 65 (define-key outline-mode-map [menu-bar hide hide-entry]
66 '("Hide Entry" . outline-hide-entry)) 66 '("Hide Entry" . hide-entry))
67 (define-key outline-mode-map [menu-bar hide hide-body] 67 (define-key outline-mode-map [menu-bar hide hide-body]
68 '("Hide Body" . outline-hide-body)) 68 '("Hide Body" . hide-body))
69 (define-key outline-mode-map [menu-bar hide hide-leaves] 69 (define-key outline-mode-map [menu-bar hide hide-leaves]
70 '("Hide Leaves" . outline-hide-leaves)) 70 '("Hide Leaves" . hide-leaves))
71 71
72 (define-key outline-mode-map [menu-bar show] 72 (define-key outline-mode-map [menu-bar show]
73 (cons "Show" (make-sparse-keymap "Show"))) 73 (cons "Show" (make-sparse-keymap "Show")))
74 74
75 (define-key outline-mode-map [menu-bar show show-subtree] 75 (define-key outline-mode-map [menu-bar show show-subtree]
76 '("Show Subtree" . outline-show-subtree)) 76 '("Show Subtree" . show-subtree))
77 (define-key outline-mode-map [menu-bar show show-children] 77 (define-key outline-mode-map [menu-bar show show-children]
78 '("Show Children" . outline-show-children)) 78 '("Show Children" . show-children))
79 (define-key outline-mode-map [menu-bar show show-branches] 79 (define-key outline-mode-map [menu-bar show show-branches]
80 '("Show Branches" . outline-show-branches)) 80 '("Show Branches" . show-branches))
81 (define-key outline-mode-map [menu-bar show show-entry] 81 (define-key outline-mode-map [menu-bar show show-entry]
82 '("Show Entry" . outline-show-entry)) 82 '("Show Entry" . show-entry))
83 (define-key outline-mode-map [menu-bar show show-all] 83 (define-key outline-mode-map [menu-bar show show-all]
84 '("Show All" . outline-show-all)) 84 '("Show All" . show-all))
85 85
86 (define-key outline-mode-map [menu-bar headings] 86 (define-key outline-mode-map [menu-bar headings]
87 (cons "Headings" (make-sparse-keymap "Headings"))) 87 (cons "Headings" (make-sparse-keymap "Headings")))