diff options
author | Arun Isaac | 2019-05-16 20:48:42 +0530 |
---|---|---|
committer | Arun Isaac | 2019-05-16 20:48:42 +0530 |
commit | 15de86e16e26ef62ec631f7b8cc9ffe1d67ddc43 (patch) | |
tree | af157c0b3555cd2c91b7ecf8610b1eb86c79bba1 | |
parent | 930f692039680051b89b130a7e790a232df4462b (diff) | |
download | exiftool.el-15de86e16e26ef62ec631f7b8cc9ffe1d67ddc43.tar.gz exiftool.el-15de86e16e26ef62ec631f7b8cc9ffe1d67ddc43.tar.lz exiftool.el-15de86e16e26ef62ec631f7b8cc9ffe1d67ddc43.zip |
Change buffer name of exiftool process to *exiftool*.
* exiftool.el (exiftool-run): Change buffer name of exiftool process
to *exiftool*.
-rw-r--r-- | exiftool.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exiftool.el b/exiftool.el index 2fd60e2..b1d06d5 100644 --- a/exiftool.el +++ b/exiftool.el @@ -64,7 +64,7 @@ a new one. Return the process object of the newly created process." (when-let (exiftool (get-process "exiftool")) (delete-process exiftool)) - (start-process "exiftool" "exiftool" + (start-process "exiftool" "*exiftool*" exiftool-executable "-stay_open" "True" "-@" "-")) (let ((tq (tq-create (exiftool-run)))) |