* lisp/outline.el (outline-move-subtree-down):
Include blank line when outline-blank-line is t
(bug#77238).
Copyright-paperwork-exempt: yes
(cherry picked from commit
40bf281c644e3323f010b007c9bfc730e92896aa)
;; move it to, adding a newline if necessary, to ensure these points
;; are at bol on the line below the subtree.
(end-point-func (lambda ()
- (outline-end-of-subtree)
+ (let ((outline-blank-line nil))
+ (outline-end-of-subtree))
(if (eq (char-after) ?\n) (forward-char 1)
(if (and (eobp) (not (bolp))) (insert "\n")))
(point)))