branch: externals/org commit c60006864a5a26c878f6f317d4ade4bf7cd004af Author: Michael Heerdegen <michael_heerde...@web.de> Commit: Kyle Meyer <k...@kyleam.com>
Backport commit 7905ea761 from Emacs * lisp/ob-exp.el (org-babel-exp--at-source): Fix broken edebug specs (debug body) -> (debug (body)). Correct (debug body) edebug specs 7905ea761ac8405628993708b4c1d4516370067c Michael Heerdegen Sat Mar 8 18:35:07 2025 +0100 --- lisp/ob-exp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-exp.el b/lisp/ob-exp.el index 83b6be8e24..ab99541ab9 100644 --- a/lisp/ob-exp.el +++ b/lisp/ob-exp.el @@ -65,7 +65,7 @@ to avoid evaluating code on export should use the header argument Source is located in `org-babel-exp-reference-buffer'. The value returned is the value of the last form in BODY. Assume that point is at the beginning of the Babel block." - (declare (indent 1) (debug body)) + (declare (indent 1) (debug (body))) `(let ((source (get-text-property (point) 'org-reference))) ;; Source blocks created during export process (e.g., by other ;; source blocks) are not referenced. In this case, do not move