This fixes Bug#69865.
* lisp/org/ob-exp.el (org-babel-exp--at-source):
* test/lisp/dired-tests.el (dired-test-with-temp-dirs):
* test/lisp/emacs-lisp/package-tests.el (with-fake-help-buffer):
Fix broken edebug specs (debug body) -> (debug (body)).
(cherry picked from commit
7905ea761ac8405628993708b4c1d4516370067c)
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
(defmacro dired-test-with-temp-dirs (just-empty-dirs &rest body)
"Helper macro for Bug#27940 test."
- (declare (indent 1) (debug body))
+ (declare (indent 1) (debug (body)))
(let ((dir (make-symbol "dir")))
`(ert-with-temp-directory ,dir
(let* ((dired-deletion-confirmer (lambda (_) "yes")) ; Suppress prompts.