Variable: bibtex-field-braces-alist

bibtex-field-braces-alist is a customizable variable defined in bibtex.el.gz.

Value

nil

Documentation

Alist of field regexps that M-x bibtex-clean-entry (bibtex-clean-entry) encloses by braces.

Each element has the form (FIELDS REGEXP), where FIELDS is a list of BibTeX field names and REGEXP is a regexp. Space characters in REGEXP will be replaced by "[ \\t\\n]+".

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defcustom bibtex-field-braces-alist nil
 "Alist of field regexps that \\[bibtex-clean-entry] encloses by braces.
Each element has the form (FIELDS REGEXP), where FIELDS is a list
of BibTeX field names and REGEXP is a regexp.
Space characters in REGEXP will be replaced by \"[ \\t\\n]+\"."
  :group 'bibtex
  :type '(repeat (list (repeat (string :tag "field name"))
                       (choice (regexp :tag "regexp")
                               (sexp :tag "sexp")))))