Function: bibtex-read-key

bibtex-read-key is a byte-compiled function defined in bibtex.el.gz.

Signature

(bibtex-read-key PROMPT &optional KEY GLOBAL)

Documentation

Read BibTeX key from minibuffer using PROMPT and default KEY.

If optional arg GLOBAL is non-nil, completion is based on the keys in bibtex-reference-keys of bibtex-files.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defun bibtex-read-key (prompt &optional key global)
  "Read BibTeX key from minibuffer using PROMPT and default KEY.
If optional arg GLOBAL is non-nil, completion is based on the keys in
`bibtex-reference-keys' of `bibtex-files'."
  (let (completion-ignore-case)
    (completing-read prompt (if global (bibtex-global-key-alist)
                              bibtex-reference-keys)
                     nil nil key 'bibtex-key-history)))