summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2014-11-03 21:05:17 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2014-11-03 21:05:17 +0100
commit407384772967c5b126c7230f4322f75750d98a80 (patch)
treed6fd1b7b1112141c1579d3336c0f47126a51ef41
parentff1305efc9250a0d0aa2db71c6a4d20ab1fcd3ea (diff)
downloadorg-mode-407384772967c5b126c7230f4322f75750d98a80.tar.gz
Fix menu entries: Move Subtree Up/Down
* lisp/org.el (org-org-menu): Fix entries. `org-shiftmetaup' and `org-shiftmetadown' only drag a single line up or down. They are not about structure editing. Reported-by: James Harkins <jamshark70@qq.com> <http://permalink.gmane.org/gmane.emacs.orgmode/92299>
-rwxr-xr-xlisp/org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 5b365b0..c09faff 100755
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -21293,8 +21293,8 @@ on context. See the individual commands for more information."
("Edit Structure"
["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
"--"
- ["Move Subtree Up" org-shiftmetaup (org-in-subtree-not-table-p)]
- ["Move Subtree Down" org-shiftmetadown (org-in-subtree-not-table-p)]
+ ["Move Subtree Up" org-metaup (org-at-heading-p)]
+ ["Move Subtree Down" org-metadown (org-at-heading-p)]
"--"
["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]