Merge branch 'maint'
This commit is contained in:
commit
c637195e45
|
@ -18084,9 +18084,15 @@ Move point to the beginning of first heading or end of buffer."
|
||||||
(let ((org-note-abort t))
|
(let ((org-note-abort t))
|
||||||
(funcall org-finish-function))
|
(funcall org-finish-function))
|
||||||
(if (org-before-first-heading-p)
|
(if (org-before-first-heading-p)
|
||||||
|
(progn
|
||||||
(org-show-branches-buffer)
|
(org-show-branches-buffer)
|
||||||
|
(org-hide-archived-subtrees (point-min) (point-max)))
|
||||||
|
(let ((beg (progn (outline-back-to-heading) (point)))
|
||||||
|
(end (progn (outline-end-of-subtree) (point))))
|
||||||
|
(goto-char beg)
|
||||||
(outline-hide-subtree)
|
(outline-hide-subtree)
|
||||||
(outline-show-branches))))
|
(outline-show-branches)
|
||||||
|
(org-hide-archived-subtrees beg end)))))
|
||||||
|
|
||||||
(defun org-delete-indentation (&optional arg)
|
(defun org-delete-indentation (&optional arg)
|
||||||
"Join current line to previous and fix whitespace at join.
|
"Join current line to previous and fix whitespace at join.
|
||||||
|
|
|
@ -7548,6 +7548,16 @@ Contents
|
||||||
(org-set-visibility-according-to-property)
|
(org-set-visibility-according-to-property)
|
||||||
(invisible-p (point)))))
|
(invisible-p (point)))))
|
||||||
|
|
||||||
|
(ert-deftest test-org/visibility-show-branches ()
|
||||||
|
"Test visibility of inline archived subtrees."
|
||||||
|
(org-test-with-temp-text
|
||||||
|
"* Foo<point>
|
||||||
|
** Bar :ARCHIVE:
|
||||||
|
*** Baz
|
||||||
|
"
|
||||||
|
(org-kill-note-or-show-branches)
|
||||||
|
(should (org-invisible-p (- (point-max) 2)))))
|
||||||
|
|
||||||
|
|
||||||
;;; Yank and Kill
|
;;; Yank and Kill
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue