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