aboutsummaryrefslogtreecommitdiffstats
path: root/test/automated/python-tests.el
diff options
context:
space:
mode:
authorJoakim Verona2013-07-02 22:46:17 +0200
committerJoakim Verona2013-07-02 22:46:17 +0200
commit3718127221fbbc31f8ebd027ab7c95403dbe9118 (patch)
treeef422898f3344c8f94f6ecf63eb583122bbf2bd8 /test/automated/python-tests.el
parent1ce45b902c67b8a0dda8d71bd2812de29a9988a6 (diff)
parenta3b49114c186d84404226af75ae7905bd1cd018f (diff)
downloademacs-3718127221fbbc31f8ebd027ab7c95403dbe9118.tar.gz
emacs-3718127221fbbc31f8ebd027ab7c95403dbe9118.zip
Merge branch 'trunk' into xwidget
Conflicts: src/window.c
Diffstat (limited to 'test/automated/python-tests.el')
-rw-r--r--test/automated/python-tests.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/automated/python-tests.el b/test/automated/python-tests.el
index 8462a863b84..40505cc7953 100644
--- a/test/automated/python-tests.el
+++ b/test/automated/python-tests.el
@@ -39,7 +39,8 @@ always located at the beginning of buffer."
39BODY is code to be executed within the temp buffer. Point is 39BODY is code to be executed within the temp buffer. Point is
40always located at the beginning of buffer." 40always located at the beginning of buffer."
41 (declare (indent 1) (debug t)) 41 (declare (indent 1) (debug t))
42 `(let* ((temp-file (concat (make-temp-file "python-tests") ".py")) 42 ;; temp-file never actually used for anything?
43 `(let* ((temp-file (make-temp-file "python-tests" nil ".py"))
43 (buffer (find-file-noselect temp-file))) 44 (buffer (find-file-noselect temp-file)))
44 (unwind-protect 45 (unwind-protect
45 (with-current-buffer buffer 46 (with-current-buffer buffer
@@ -47,7 +48,8 @@ always located at the beginning of buffer."
47 (insert ,contents) 48 (insert ,contents)
48 (goto-char (point-min)) 49 (goto-char (point-min))
49 ,@body) 50 ,@body)
50 (and buffer (kill-buffer buffer))))) 51 (and buffer (kill-buffer buffer))
52 (delete-file temp-file))))
51 53
52(defun python-tests-look-at (string &optional num restore-point) 54(defun python-tests-look-at (string &optional num restore-point)
53 "Move point at beginning of STRING in the current buffer. 55 "Move point at beginning of STRING in the current buffer.