diff options
author | Arun Isaac | 2017-06-16 19:16:04 +0530 |
---|---|---|
committer | Arun Isaac | 2017-06-16 19:16:04 +0530 |
commit | aafe5394c7be86047700f253743e395a0ce37764 (patch) | |
tree | 8b70fc953b074508e10c33a04896daeff3e4b8c8 | |
parent | 8dd70ba5214a73960361a0c6220bb4aa72b9e478 (diff) | |
download | exiftool.el-aafe5394c7be86047700f253743e395a0ce37764.tar.gz exiftool.el-aafe5394c7be86047700f253743e395a0ce37764.tar.lz exiftool.el-aafe5394c7be86047700f253743e395a0ce37764.zip |
Fix indentation.
* tests/exiftool-tests.el (with-temp-test-file): Fix indentation.
-rw-r--r-- | tests/exiftool-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/exiftool-tests.el b/tests/exiftool-tests.el index b81b257..ecb4f15 100644 --- a/tests/exiftool-tests.el +++ b/tests/exiftool-tests.el @@ -44,8 +44,8 @@ (defmacro with-temp-test-file (test-file temp-file &rest body) "Copy TEST-FILE to temporary file, put path in TEMP-FILE, evaluate BODY." (declare (indent defun)) - `(let ((,temp-file (make-temp-file "exiftool-" - nil (concat "-" ,test-file)))) + `(let ((,temp-file (make-temp-file + "exiftool-" nil (concat "-" ,test-file)))) (copy-file ,test-file ,temp-file t) ,@body (delete-file ,temp-file))) |