Function: bibtex-beginning-first-field

bibtex-beginning-first-field is a byte-compiled function defined in bibtex.el.gz.

Signature

(bibtex-beginning-first-field &optional BEG)

Documentation

Move point to beginning of first field.

Optional arg BEG is beginning of entry.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defun bibtex-beginning-first-field (&optional beg)
  "Move point to beginning of first field.
Optional arg BEG is beginning of entry."
  (if beg (goto-char beg) (bibtex-beginning-of-entry))
  (looking-at bibtex-any-entry-maybe-empty-head)
  (goto-char (match-end 0)))