Function: abbrev-table-p

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

Signature

(abbrev-table-p OBJECT)

Documentation

Return non-nil if OBJECT is an abbrev table.

View in manual

Probably introduced at or before Emacs version 23.1.

Source Code

;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun abbrev-table-p (object)
  "Return non-nil if OBJECT is an abbrev table."
  (and (obarrayp object)
       (numberp (ignore-error wrong-type-argument
                  (abbrev-table-get object :abbrev-table-modiff)))))