Function: symtable:add

symtable:add is a byte-compiled function defined in hact.el.

Signature

(symtable:add SYMBOL-OR-NAME SYMTABLE)

Documentation

Add Hyperbole SYMBOL-OR-NAME to existing SYMTABLE.

Return the Elisp symbol for SYMBOL-OR-NAME. Caller must ensure SYMBOL-OR-NAME is a symbol or string.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
(defun    symtable:add (symbol-or-name symtable)
  "Add Hyperbole SYMBOL-OR-NAME to existing SYMTABLE.
Return the Elisp symbol for SYMBOL-OR-NAME.
Caller must ensure SYMBOL-OR-NAME is a symbol or string."
  (symtable:operate #'puthash symbol-or-name symtable))