Function: last-line-p

last-line-p is a byte-compiled function defined in hui-mouse.el.

Signature

(last-line-p)

Documentation

Return t if point is on the last line of the buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
(defun last-line-p ()
  "Return t if point is on the last line of the buffer."
  (save-excursion (end-of-line) (smart-eobp)))