summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-04-26 11:36:40 -0400
committerKyle Meyer <kyle@kyleam.com>2014-04-26 16:54:12 -0400
commit35b18d61c7d8005cd333bfa5134a1a35313ded17 (patch)
tree718caaa5176305e76f409e738d91886df0b75688
parent8f2ff1313ff2d91e37bd41ae4a4ac77058d1f874 (diff)
downloadbog-35b18d61c7d8005cd333bfa5134a1a35313ded17.tar.gz
Prompt with bib citekeys in bog-find-citekey-bib
When a prefix argument is given to `bog-find-citekey-bib', `bog-pdf-citekeys` was being used to generate the collection of available citekeys instead of`bog-bib-citekeys'.
-rw-r--r--bog.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/bog.el b/bog.el
index 0536630..de7e429 100644
--- a/bog.el
+++ b/bog.el
@@ -387,7 +387,7 @@ available citekeys. Otherwise, the citekey will be taken from the
text under point if it matches `bog-citekey-format' or using
`bog-citekey-func'."
(interactive "P")
- (let ((citekey (or (and arg (bog-select-citekey (bog-pdf-citekeys)))
+ (let ((citekey (or (and arg (bog-select-citekey (bog-bib-citekeys)))
(bog-citekey-from-notes))))
(funcall bog-find-citekey-bib-func citekey)))