Function: symtable:remove

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

Signature

(symtable:remove SYMBOL-OR-NAME SYMTABLE)

Documentation

Remove the Hyperbole SYMBOL-OR-NAME if it is in SYMTABLE.

Always return nil. Caller must ensure SYMBOL-OR-NAME is a symbol or string.

Aliases

symtable:delete

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
(defun    symtable:remove (symbol-or-name symtable)
  "Remove the Hyperbole SYMBOL-OR-NAME if it is in SYMTABLE.
Always return nil.
Caller must ensure SYMBOL-OR-NAME is a symbol or string."
  (symtable:operate #'remhash symbol-or-name symtable))