[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/org 4846c7fa39: org-babel-map-call-lines: Fix typo
From: |
ELPA Syncer |
Subject: |
[elpa] externals/org 4846c7fa39: org-babel-map-call-lines: Fix typo |
Date: |
Sun, 16 Mar 2025 03:58:46 -0400 (EDT) |
branch: externals/org
commit 4846c7fa398d8426f3336cd2c98e5b3b31b3ad30
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@posteo.net>
org-babel-map-call-lines: Fix typo
* lisp/ob-core.el (org-babel-map-call-lines): Fix incorrect variable
reference revealed by compiler warning.
---
lisp/ob-core.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/ob-core.el b/lisp/ob-core.el
index 2f66ab17df..10992d61dd 100644
--- a/lisp/ob-core.el
+++ b/lisp/ob-core.el
@@ -1408,8 +1408,8 @@ buffer."
(while (re-search-forward "call_\\S-\\|^[ \t]*#\\+CALL:" nil t)
(let ((,datum (org-element-context)))
(when (org-element-type-p ,datum '(babel-call inline-babel-call))
- (goto-char (or (org-element-post-affiliated datum)
- (org-element-begin datum)))
+ (goto-char (or (org-element-post-affiliated ,datum)
+ (org-element-begin ,datum)))
(let ((,end (copy-marker (org-element-end ,datum))))
,@body
(goto-char ,end)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [elpa] externals/org 4846c7fa39: org-babel-map-call-lines: Fix typo,
ELPA Syncer <=