diff options
author | Arun Isaac | 2017-03-03 13:29:53 +0530 |
---|---|---|
committer | Arun Isaac | 2017-03-03 13:29:53 +0530 |
commit | c026f2761b46d9505fe1baa30bb17ce5ac2ac1d6 (patch) | |
tree | 1c59d1e0a64b89e2f03396b78d42e8e1e4936af7 /README.org | |
parent | 0186a8807795f3aefce40be84fe7a1fe39e76d4e (diff) | |
download | exiftool.el-c026f2761b46d9505fe1baa30bb17ce5ac2ac1d6.tar.gz exiftool.el-c026f2761b46d9505fe1baa30bb17ce5ac2ac1d6.tar.lz exiftool.el-c026f2761b46d9505fe1baa30bb17ce5ac2ac1d6.zip |
Update README.
* README.org: Put tag names "Marked" and "Creator" within double quotes.
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,9 +67,9 @@ If no TAGS are specified, copy all tags from SOURCE. #+BEGIN_SRC emacs-lisp ;; Copy all writable tags (exiftool-copy "source.png" "destination.png") - ;; Copy only the tag Marked + ;; Copy only the tag "Marked" (exiftool-copy "source.png" "destination.png" "Marked") - ;; Copy only the tags Marked and Creator + ;; Copy only the tags "Marked" and "Creator" (exiftool-copy "source.png" "destination.png" "Marked" "Creator") #+END_SRC |