summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2018-01-20 13:28:53 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-01-20 13:28:53 +0100
commitc2576f349b7bf27ca00d42c91f5067584c241378 (patch)
tree28974787239b1e0a55945cfb41fa403ccd7fddca
parent63c02666888c7bb7efe1afa70f12b9d53108a5c0 (diff)
downloadorg-mode-c2576f349b7bf27ca00d42c91f5067584c241378.tar.gz
Re-hide archived subtrees when showing branches
* lisp/org.el (org-kill-note-or-show-branches): Re-hide archived subtrees when showing branches. Reported-by: Allen Li <vianchielfaura@gmail.com> <http://lists.gnu.org/r/emacs-orgmode/2018-01/msg00340.html>
-rw-r--r--lisp/org.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/org.el b/lisp/org.el
index a4f4caf..7009868 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -20988,9 +20988,12 @@ Use `\\[org-edit-special]' to edit table.el tables"))
"Abort storing current note, or call `outline-show-branches'."
(interactive)
(if (not org-finish-function)
- (progn
- (outline-hide-subtree)
- (call-interactively 'outline-show-branches))
+ (save-excursion
+ (save-restriction
+ (org-narrow-to-subtree)
+ (org-flag-subtree t)
+ (call-interactively 'outline-show-branches)
+ (org-hide-archived-subtrees (point-min) (point-max))))
(let ((org-note-abort t))
(funcall org-finish-function))))