Function: abbrev-table-name

abbrev-table-name is a byte-compiled function defined in abbrev.el.gz.

Signature

(abbrev-table-name TABLE)

Documentation

Return the name of the specified abbrev TABLE.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun abbrev-table-name (table)
  "Return the name of the specified abbrev TABLE."
  (let ((tables abbrev-table-name-list)
	found)
    (while (and (not found) tables)
      (when (eq (symbol-value (car tables)) table)
	(setq found (car tables)))
      (setq tables (cdr tables)))
    found))