diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-02-09 22:43:03 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-02-09 22:43:03 -0500 |
commit | 368f807bd1db4846011755f686f12cc702fa936c (patch) | |
tree | 92ee4d627326105a8977b6cf34261865dc5aa436 /bog.el | |
parent | 0ab193f0146a32ccc020f8d69ef4310128851c4f (diff) | |
download | bog-368f807bd1db4846011755f686f12cc702fa936c.tar.gz |
BUG: Use read syntax #' for byte compilation
Diffstat (limited to 'bog.el')
-rw-r--r-- | bog.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 () |