diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-11-22 03:04:40 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-11-22 03:04:40 -0500 |
commit | 34bc37c49135d818804e22106b947d5e4de699e7 (patch) | |
tree | d1a87e3287bf209846e808a2cc9f2e001ff67702 | |
parent | b33607b0e3fd6f9813d1ec0bbf544d5bc060ee16 (diff) | |
download | bog-34bc37c49135d818804e22106b947d5e4de699e7.tar.gz |
Remove an unhelpful let binding
-rw-r--r-- | bog.el | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -333,8 +333,7 @@ With prefix argument NO-CONTEXT, a prompt will open to select from citekeys for all associated files. This same prompt will be opened if locating a citekey from context fails." (interactive "P") - (let ((citekey (bog-citekey-from-notes-or-files no-context))) - (bog-open-citekey-file citekey))) + (bog-open-citekey-file (bog-citekey-from-notes-or-files no-context))) (defun bog-open-citekey-file (citekey) (let* (citekey-file |