From fbd67b4b6dc4b3df1ab10421665bc58ad52974a5 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Wed, 23 Sep 2015 23:28:26 -0400 Subject: Revert "Remove pointless message format strings" Never mind. I think I used this just in case the string contained '%'. --- lisp/init-bib.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/init-bib.el') 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." -- cgit v1.2.3