Function: kview:end-of-actual-line

kview:end-of-actual-line is a byte-compiled function defined in kview.el.

Signature

(kview:end-of-actual-line)

Documentation

Go to the end of the current line whether collapsed or not.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kview:end-of-actual-line ()
  "Go to the end of the current line whether collapsed or not."
  (when (re-search-forward "[\n\r]" nil 'move)
    (backward-char 1)))