Function: symtable:create
symtable:create is a byte-compiled function defined in hact.el.
Signature
(symtable:create NAME SIZE)
Documentation
Create and return a new Hyperbole type symbol table with NAME and SIZE.
Also add it under the symbol for its NAME in symtable:category-plist.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
(defun symtable:create (name size)
"Create and return a new Hyperbole type symbol table with NAME and SIZE.
Also add it under the symbol for its NAME in `symtable:category-plist'."
(let ((symtable (list 'name name
'hash-table (make-hash-table :test #'equal :size size))))
(setq symtable:category-plist (plist-put symtable:category-plist (intern name) symtable))
symtable))