mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-26 10:49:38 +00:00
testing/org-test.el: Fix `org-test-with-temp-text'.
* org-test.el (org-test-with-temp-text): No need to kill a temporary buffer. Don't use (prog1 ,@body ...), only expand ,@body. Thanks to Nick Dokos for pointing this.
This commit is contained in:
parent
0b44eb6961
commit
8f3b8ee44c
@ -201,7 +201,7 @@ otherwise place the point at the beginning of the inserted text."
|
||||
(goto-char ,(match-beginning 0)))
|
||||
`(progn (insert ,inside-text)
|
||||
(goto-char (point-min)))))
|
||||
(prog1 ,@body (kill-buffer)))))
|
||||
,@body)))
|
||||
(def-edebug-spec org-test-with-temp-text (form body))
|
||||
|
||||
(defmacro org-test-with-temp-text-in-file (text &rest body)
|
||||
|
Loading…
Reference in New Issue
Block a user