diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-02-15 15:56:42 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-02-15 16:04:55 -0500 |
commit | 93d0f444da93375de0480fe8e5009f2423040d79 (patch) | |
tree | d639d33a4d9c70651df7a410bcf763f410b5f551 /bog.el | |
parent | 289b1399a8791eed9dd58b5364a958db1ee2054e (diff) | |
download | bog-93d0f444da93375de0480fe8e5009f2423040d79.tar.gz |
BUG: Fix renaming staged PDF when one choice
When 4dfcc52 changed remoed the path from choices, this should have been
kept as the full path.
Diffstat (limited to 'bog.el')
-rw-r--r-- | bog.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -265,7 +265,7 @@ The citekey will be taken from the text under point if it matches (setq staged-pdf (funcall bog-read-file-name "Select PDF file to rename: "))) ((= 1 num-choices) - (setq staged-pdf (car choices))) + (setq staged-pdf (car staged-pdfs))) (t (setq staged-pdf (expand-file-name (funcall bog-completing-read |