aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2017-03-03 13:29:53 +0530
committerArun Isaac2017-03-03 13:29:53 +0530
commitc026f2761b46d9505fe1baa30bb17ce5ac2ac1d6 (patch)
tree1c59d1e0a64b89e2f03396b78d42e8e1e4936af7
parent0186a8807795f3aefce40be84fe7a1fe39e76d4e (diff)
downloadexiftool.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.
-rw-r--r--README.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.org b/README.org
index b7e613d..b4b3bd4 100644
--- a/README.org
+++ b/README.org
@@ -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