diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-04-26 11:36:40 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-04-26 16:54:12 -0400 |
commit | 35b18d61c7d8005cd333bfa5134a1a35313ded17 (patch) | |
tree | 718caaa5176305e76f409e738d91886df0b75688 /bog.el | |
parent | 8f2ff1313ff2d91e37bd41ae4a4ac77058d1f874 (diff) | |
download | bog-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'.
Diffstat (limited to 'bog.el')
-rw-r--r-- | bog.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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))) |