From c8c804e91722a30bd9c37e0fe322c22f2507ee49 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Fri, 23 Sep 2011 15:49:31 -0600 Subject: [PATCH] update function documentation for `org-test-with-temp-text' * testing/org-test.el (org-test-with-temp-text): Update function documentation. --- testing/org-test.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/org-test.el b/testing/org-test.el index 333fb5f3a..75cb8bf02 100644 --- a/testing/org-test.el +++ b/testing/org-test.el @@ -183,7 +183,8 @@ files." (defmacro org-test-with-temp-text (text &rest body) "Run body in a temporary buffer with Org-mode as the active mode holding TEXT. If the string \"\" appears in TEXT -then remove it and place the point there before running BODY." +then remove it and place the point there before running BODY, +otherwise place the point at the beginning of the inserted text." (declare (indent 1)) (let ((inside-text (if (stringp text) text (eval text)))) `(with-temp-buffer -- 2.11.4.GIT