Explorar o código

Fix wrong order of lines to move before pasting

* org.el (org-paste-subtree): Fix wrong order of lines to move before
pasting.
David Maus %!s(int64=14) %!d(string=hai) anos
pai
achega
3771185cae
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -7568,7 +7568,7 @@ the inserted text when done."
      (if force-level
 	 (delete-region (point-at-bol) (point)))
      ;; Paste
-     (beginning-of-line (if (bolp) 2 1))
+     (beginning-of-line (if (bolp) 1 2))
      (unless for-yank (org-back-over-empty-lines))
      (setq beg (point))
      (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))