Function: hypb:get-raw-syntax-descriptor

hypb:get-raw-syntax-descriptor is a byte-compiled function defined in hypb.el.

Signature

(hypb:get-raw-syntax-descriptor CHAR &optional SYNTAX-TABLE)

Documentation

Return the raw syntax descriptor for CHAR.

Use the current syntax table or optional SYNTAX-TABLE.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:get-raw-syntax-descriptor (char &optional syntax-table)
  "Return the raw syntax descriptor for CHAR.
Use the current syntax table or optional SYNTAX-TABLE."
  (aref (or syntax-table (syntax-table)) char))