Variable: bibtex-include-OPTkey
bibtex-include-OPTkey is a customizable variable defined in
bibtex.el.gz.
This variable is obsolete since 31.1; use bibtex-aux-opt-alist
instead.
Value
nil
Documentation
If non-nil, all newly created entries get an OPTkey field.
If this is a string, use it as the initial field text. If this is a function, call it to generate the initial field text.
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-include-OPTkey nil
"If non-nil, all newly created entries get an OPTkey field.
If this is a string, use it as the initial field text.
If this is a function, call it to generate the initial field text."
:group 'bibtex
:version "31.1" ; change default
:type '(choice (const :tag "None" nil)
(string :tag "Initial text")
(function :tag "Initialize Function")
(const :tag "Default" t))
:risky t)