Function: allout-end-of-current-line
allout-end-of-current-line is a byte-compiled function defined in
allout.el.gz.
Signature
(allout-end-of-current-line)
Documentation
Move to the end of line, past concealed text if any.
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-end-of-current-line ()
(defun allout-end-of-current-line ()
"Move to the end of line, past concealed text if any."
;; This is for symmetry with `allout-beginning-of-current-line' --
;; `move-end-of-line' doesn't suffer the same problem as
;; `move-beginning-of-line'.
(let ((inhibit-field-text-motion t))
(end-of-line)
(while (allout-hidden-p)
(end-of-line)
(if (allout-hidden-p) (forward-char 1)))))