Function: hui-select-sentence

hui-select-sentence is a byte-compiled function defined in hui-select.el.

Signature

(hui-select-sentence POS)

Documentation

Return (start . end) of the sentence at POS.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-select.el
(defun hui-select-sentence (pos)
  "Return (start . end) of the sentence at POS."
  (setq hui-select-previous 'sentence)
  (save-excursion
    (goto-char pos)
    (ignore-errors
      (hui-select-set-region (progn (backward-sentence) (point))
			     (progn (forward-sentence) (point))))))