Function: first-line-p
first-line-p is a byte-compiled function defined in hui-mouse.el.
Signature
(first-line-p)
Documentation
Return t if point is on the first line of the buffer.
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
;;; ************************************************************************
;;; support code
;;; ************************************************************************
;; The `load' line below loads any local Smart Key function definitions.
;; The public distribution contains none. You may leave it commented out if
;; you prefer.
;; (load "smart-local" t)
;;; ************************************************************************
;;; Required Init functions
;;; ************************************************************************
(defun first-line-p ()
"Return t if point is on the first line of the buffer."
(save-excursion (beginning-of-line) (bobp)))