emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org 0baa75bb45 1/2: Merge branch 'bugfix'


From: ELPA Syncer
Subject: [elpa] externals/org 0baa75bb45 1/2: Merge branch 'bugfix'
Date: Thu, 8 Dec 2022 07:57:53 -0500 (EST)

branch: externals/org
commit 0baa75bb45544b4cee1133193cf20798e9a09cd4
Merge: 697aa627ac 8b6df19dc7
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@posteo.net>

    Merge branch 'bugfix'
---
 lisp/org-fold-core.el | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lisp/org-fold-core.el b/lisp/org-fold-core.el
index 6818579039..8a451a82b2 100644
--- a/lisp/org-fold-core.el
+++ b/lisp/org-fold-core.el
@@ -930,6 +930,8 @@ are provided.
 
 If FROM is non-nil and TO is nil, search the folded regions at FROM.
 
+When both FROM and TO are nil, search folded regions in the whole buffer.
+
 When SPECS is non-nil it should be a list of folding specs or a symbol.
 Only return the matching fold types.
 
@@ -946,6 +948,9 @@ WITH-MARKERS must be nil when RELATIVE is non-nil."
   (unless (listp specs) (setq specs (list specs)))
   (let (regions region mk-region)
     (org-with-wide-buffer
+     (when (and (not from) (not to))
+       (setq from (point-min)
+             to (point-max)))
      (when (and from (not to)) (setq to (point-max)))
      (when (and from (< from (point-min))) (setq from (point-min)))
      (when (and to (> to (point-max))) (setq to (point-max)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]