Function: hproperty:select-line

hproperty:select-line is a byte-compiled function defined in hproperty.el.

Signature

(hproperty:select-line &optional PNT)

Documentation

Select line in current buffer at optional position PNT with hproperty:item-face.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hproperty.el
  (sit-for 0))  ;; Force display update

(defun hproperty:select-line (&optional pnt)
  "Select line in current buffer at optional position PNT with hproperty:item-face."
  (when pnt (goto-char pnt))
  (hproperty:but-add (line-beginning-position) (line-end-position) hproperty:item-face)
  ;; Force display update
  (sit-for 0))