Function: hui-select-scan-sexps

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

Signature

(hui-select-scan-sexps FROM COUNT)

Documentation

Scan FROM point across COUNT sexpressions.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-select.el
(defun hui-select-scan-sexps (from count)
  "Scan FROM point across COUNT sexpressions."
  (if (memq major-mode hui-select-ignore-quoted-sexp-modes)
      (scan-sexps from count)
    (with-syntax-table hui-select-syntax-table
      (scan-sexps from count))))