Function: bibtex-parse-field
bibtex-parse-field is a byte-compiled function defined in
bibtex.el.gz.
Signature
(bibtex-parse-field)
Documentation
Parse the BibTeX field beginning at the position of point.
If a syntactically correct field is found, return a cons pair containing the boundaries of the name and text parts of the field. Do not move point.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defun bibtex-parse-field ()
"Parse the BibTeX field beginning at the position of point.
If a syntactically correct field is found, return a cons pair containing
the boundaries of the name and text parts of the field. Do not move point."
(bibtex-parse-association 'bibtex-parse-field-name
'bibtex-parse-field-text))