Variable: bibtex-autokey-before-presentation-function

bibtex-autokey-before-presentation-function is a customizable variable defined in bibtex.el.gz.

Value

identity

Documentation

Function to call before generated key is presented.

The function must take one argument (the automatically generated key), and must return a string (the key to use).

This variable was added, or its default value changed, in Emacs 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-autokey-before-presentation-function #'identity
  "Function to call before generated key is presented.
The function must take one argument (the automatically generated key),
and must return a string (the key to use)."
  :group 'bibtex-autokey
  :version "28.1"
  :type 'function)