Function: abbrev-table-put

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

Signature

(abbrev-table-put TABLE PROP VAL)

Documentation

Set the property PROP of abbrev table TABLE to VAL.

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-put (table prop val)
  "Set the property PROP of abbrev table TABLE to VAL."
  (let ((sym (obarray-put table "")))
    (set sym nil)	     ; Make sure it won't be confused for an abbrev.
    (put sym prop val)))