Function: bibtex-read-string-key
bibtex-read-string-key is a byte-compiled function defined in
bibtex.el.gz.
Signature
(bibtex-read-string-key &optional KEY)
Documentation
Read BibTeX string key from minibuffer using default KEY.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defun bibtex-read-string-key (&optional key)
"Read BibTeX string key from minibuffer using default KEY."
(let ((completion-ignore-case t))
(completing-read "String key: " bibtex-strings
nil nil key 'bibtex-key-history)))