Function: smart-eobp
smart-eobp is an autoloaded and byte-compiled function defined in
hui-mouse.el.
Signature
(smart-eobp)
Documentation
Return t if point is past the last visible non-whitespace buffer line.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
;;;###autoload
(defun smart-eobp ()
"Return t if point is past the last visible non-whitespace buffer line."
(and (or (and (eobp) (bolp))
;; On a blank line and nothing but whitespace until eob
(save-excursion
(beginning-of-line)
(looking-at "[ \t\n\r\f]+\\'")))
(or (not (smart-outline-char-invisible-p))
(not (smart-outline-char-invisible-p (1- (point)))))))