aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2017-02-28 00:39:25 +0530
committerArun Isaac2017-02-28 00:39:25 +0530
commitc0cb133f3d5f89ba6bd86a1de323b28c5f355111 (patch)
tree0835b8a477aa4bb41d9a99e0fa3d77eaf2a2e62e
parentc61dc4f77fdf0e55bbb4ef4594696a1932132c8a (diff)
downloadexiftool.el-c0cb133f3d5f89ba6bd86a1de323b28c5f355111.tar.gz
exiftool.el-c0cb133f3d5f89ba6bd86a1de323b28c5f355111.tar.lz
exiftool.el-c0cb133f3d5f89ba6bd86a1de323b28c5f355111.zip
Improve formatting.
* README.org: Put function return values on their own line.
-rw-r--r--README.org6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.org b/README.org
index 0b2bddc..9317b74 100644
--- a/README.org
+++ b/README.org
@@ -18,8 +18,10 @@ If a tag is not found, return an empty string "" as the value. If no
TAGS are specified, read all tags from FILE.
#+BEGIN_SRC emacs-lisp
- (el-exiftool-read "test1.png" "ImageSize") ;; => '(("ImageSize" . "64x64"))
- (el-exiftool-read "test1.png" "ImageSize" "Interlace") ;; => '(("ImageSize" . "64x64") ("Interlace" . "Noninterlaced"))
+ (el-exiftool-read "test1.png" "ImageSize")
+ ;; => '(("ImageSize" . "64x64"))
+ (el-exiftool-read "test1.png" "ImageSize" "Interlace")
+ ;; => '(("ImageSize" . "64x64") ("Interlace" . "Noninterlaced"))
(el-exiftool-read "test1.png")
;; => '(("ExifToolVersion" . "10.20")
;; ("FileName" . "test1.png")