summaryrefslogtreecommitdiff
path: root/lisp/init-bib.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-09-23 23:28:26 -0400
committerKyle Meyer <kyle@kyleam.com>2015-09-23 23:28:26 -0400
commitfbd67b4b6dc4b3df1ab10421665bc58ad52974a5 (patch)
treea44185f04bbaa8074734d428c8a01e2a3f204b1f /lisp/init-bib.el
parent55353a519ff4ee6aedc6c4ef547a42361d43ea09 (diff)
downloademacs.d-fbd67b4b6dc4b3df1ab10421665bc58ad52974a5.tar.gz
Revert "Remove pointless message format strings"
Never mind. I think I used this just in case the string contained '%'.
Diffstat (limited to 'lisp/init-bib.el')
-rw-r--r--lisp/init-bib.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-bib.el b/lisp/init-bib.el
index 06d59d9..b3e82da 100644
--- a/lisp/init-bib.el
+++ b/lisp/init-bib.el
@@ -151,7 +151,7 @@ point. The link is opened using the settings of
"Copy DOI at point to kill ring."
(interactive)
(-when-let (doi (km/doi-at-point))
- (kill-new (message (concat "doi:" doi)))))
+ (kill-new (message "%s" (concat "doi:" doi)))))
(defun km/doi-at-point ()
"Return DOI at point."