summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-02-09 22:43:03 -0500
committerKyle Meyer <kyle@kyleam.com>2014-02-09 22:43:03 -0500
commit368f807bd1db4846011755f686f12cc702fa936c (patch)
tree92ee4d627326105a8977b6cf34261865dc5aa436
parent0ab193f0146a32ccc020f8d69ef4310128851c4f (diff)
downloadbog-368f807bd1db4846011755f686f12cc702fa936c.tar.gz
BUG: Use read syntax #' for byte compilation
-rw-r--r--bog.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/bog.el b/bog.el
index 1c307b2..5441fd8 100644
--- a/bog.el
+++ b/bog.el
@@ -182,7 +182,7 @@ year, and the first meaningful word in the title)."
(let ((groups (or groups '(1 2 3)))
(delim (or delim " ")))
(string-match bog-citekey-format citekey)
- (mapconcat '(lambda (g) (match-string-no-properties g citekey))
+ (mapconcat #'(lambda (g) (match-string-no-properties g citekey))
groups delim)))
(defun bog-citekey-at-point ()