Function: bibtex-goto-line
bibtex-goto-line is a byte-compiled function defined in bibtex.el.gz.
Signature
(bibtex-goto-line ARG)
Documentation
Goto line ARG, counting from beginning of (narrowed) buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defun bibtex-goto-line (arg)
"Goto line ARG, counting from beginning of (narrowed) buffer."
;; code adapted from `goto-line'
(goto-char (point-min))
(if (eq selective-display t)
(re-search-forward "[\n\C-m]" nil 'end (1- arg))
(forward-line (1- arg))))