Function: Texinfo-arg-next-line
Texinfo-arg-next-line is a byte-compiled function defined in
tex-info.el.
Signature
(Texinfo-arg-next-line OPTIONAL &rest ARGS)
Documentation
Go to the beginning of next line if we are at the end of line.
Otherwise insert an end-of-line.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex-info.el
(defun Texinfo-arg-next-line (_optional &rest _args)
"Go to the beginning of next line if we are at the end of line.
Otherwise insert an end-of-line."
(if (eolp) (forward-line) (insert "\n")))