]> git.donarmstrong.com Git - org-ref.git/commitdiff
fix minor bug in isbn-to-bibtex-lead function
authorJohn Kitchin <jkitchin@andrew.cmu.edu>
Tue, 3 Feb 2015 13:32:21 +0000 (08:32 -0500)
committerJohn Kitchin <jkitchin@andrew.cmu.edu>
Tue, 3 Feb 2015 13:32:21 +0000 (08:32 -0500)
doi-utils.org

index 48fe3b613f90d447e2df37d723b7609a732a567e..a29996f6810caf99fed664eba77bf3da816567b1 100644 (file)
@@ -1260,7 +1260,7 @@ I found this on the web. It can be handy, but the bibtex entry has a lot of stuf
 #+BEGIN_SRC emacs-lisp :tangle doi-utils.el
 (defun isbn-to-bibtex-lead (isbn)
  "Search lead.to for ISBN bibtex entry. You have to copy the entry if it is on the page to your bibtex file."
- (interactive "ISBN: ")
+ (interactive "sISBN: ")
 (browse-url
 (format "http://lead.to/amazon/en/?key=%s+&si=all&op=bt&bn=&so=sa&ht=us" isbn)))
 #+END_SRC