Function: abbrev-table-get

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

Signature

(abbrev-table-get TABLE PROP)

Documentation

Get the property PROP of abbrev table TABLE.

View in manual

Probably introduced at or before Emacs version 23.1.

Source Code

;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
;;; Abbrev properties.

(defun abbrev-table-get (table prop)
  "Get the property PROP of abbrev table TABLE."
  (let ((sym (obarray-get table "")))
    (if sym (get sym prop))))