Function: hui-select-sexp-end

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

Signature

(hui-select-sexp-end POS)

Documentation

Return (start . end) of sexp ending at POS.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-select.el
(defun hui-select-sexp-end (pos)
  "Return (start . end) of sexp ending at POS."
  (or (hui-select-brace-def-or-declaration pos)
      (save-excursion
	(setq hui-select-previous 'sexp-end)
	(ignore-errors (hui-select-set-region (hui-select-scan-sexps (1+ pos) -1) (1+ pos))))))