Function: vi-goto-line
vi-goto-line is an interactive and byte-compiled function defined in
vi.el.gz.
Signature
(vi-goto-line ARG)
Documentation
Go to ARGth line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-goto-line (arg)
"Go to ARGth line."
(interactive "P")
(if (null (vi-raw-numeric-prefix arg))
(with-no-warnings
(end-of-buffer))
(with-no-warnings (goto-line (vi-prefix-numeric-value arg)))))