Function: erc-fill--wrap-next-line
erc-fill--wrap-next-line is an interactive and byte-compiled function
defined in erc-fill.el.gz.
Signature
(erc-fill--wrap-next-line &optional ARG TRY-VSCROLL)
Documentation
Move to ARGth next logical or screen line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-fill.el.gz
(defun erc-fill--wrap-next-line (&optional arg try-vscroll)
"Move to ARGth next logical or screen line."
(interactive "^p\np")
(let ((visp (memq erc-fill--wrap-visual-keys
erc-fill-wrap-force-screen-line-movement)))
(erc-fill--wrap-move (if visp #'next-line #'next-logical-line)
#'next-line
arg try-vscroll)
(when erc-fill-wrap-merge
(erc-fill--wrap-escape-hidden-speaker))))