[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/embark 08ba56dc13 1/2: Use org-reveal rather than org-f
From: |
ELPA Syncer |
Subject: |
[elpa] externals/embark 08ba56dc13 1/2: Use org-reveal rather than org-fold-reveal |
Date: |
Tue, 26 Sep 2023 03:58:08 -0400 (EDT) |
branch: externals/embark
commit 08ba56dc13e0459cede24313846c6fa1325ad0e6
Author: Omar Antolín <omar.antolin@gmail.com>
Commit: Omar Antolín <omar.antolin@gmail.com>
Use org-reveal rather than org-fold-reveal
org-fold-reveal was added in 9.6 to replace the older org-reveal
command. Fortunately, in Org 9.6 org-reveal is aliased to the newer
command, so using org-reveal just does the right thing in all versions
of Org.
---
embark-org.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/embark-org.el b/embark-org.el
index 2c0d51c59f..50afab1ca1 100644
--- a/embark-org.el
+++ b/embark-org.el
@@ -607,7 +607,7 @@ target. Applies RUN to the REST of the arguments."
(pop-to-buffer (marker-buffer marker))
(widen)
(goto-char marker)
- (org-fold-reveal)
+ (org-reveal)
(pulse-momentary-highlight-one-line)))
(defun embark-org-heading-default-action (target)