summaryrefslogtreecommitdiff
path: root/lisp/outline.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2011-11-15 18:37:37 +0100
committerJuanma Barranquero <lekktu@gmail.com>2011-11-15 18:37:37 +0100
commitc7015153512a7d00aba390cc1f9a6b512a9c9ed7 (patch)
tree273167d1dbfc68a60ad4c195b9cd0bcfae9a302d /lisp/outline.el
parentdcecfb4cb41ffa672672f55df8ce20deb7af78c4 (diff)
downloademacs-c7015153512a7d00aba390cc1f9a6b512a9c9ed7.tar.gz
Fix typos.
Diffstat (limited to 'lisp/outline.el')
-rw-r--r--lisp/outline.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/outline.el b/lisp/outline.el
index 34d30fc4591..b5bf8296455 100644
--- a/lisp/outline.el
+++ b/lisp/outline.el
@@ -144,10 +144,10 @@ in the file it applies to."
:help "Promote headings higher up the tree"))
(define-key map [headings move-subtree-down]
'(menu-item "Move Subtree Down" outline-move-subtree-down
- :help "Move the currrent subtree down past arg headlines of the same level"))
+ :help "Move the current subtree down past arg headlines of the same level"))
(define-key map [headings move-subtree-up]
'(menu-item "Move Subtree Up" outline-move-subtree-up
- :help "Move the currrent subtree up past arg headlines of the same level"))
+ :help "Move the current subtree up past arg headlines of the same level"))
(define-key map [headings copy]
'(menu-item "Copy to Kill Ring" outline-headers-as-kill
:enable mark-active
@@ -642,12 +642,12 @@ the match data is set appropriately."
;; Vertical tree motion
(defun outline-move-subtree-up (&optional arg)
- "Move the currrent subtree up past ARG headlines of the same level."
+ "Move the current subtree up past ARG headlines of the same level."
(interactive "p")
(outline-move-subtree-down (- arg)))
(defun outline-move-subtree-down (&optional arg)
- "Move the currrent subtree down past ARG headlines of the same level."
+ "Move the current subtree down past ARG headlines of the same level."
(interactive "p")
(let ((movfunc (if (> arg 0) 'outline-get-next-sibling
'outline-get-last-sibling))