Function: hui-select-sexp-start

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

Signature

(hui-select-sexp-start POS)

Documentation

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

Source Code

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