symbol-plist
symbol-plist symbol → plist
(setf (symbol-plist symbol) new-plist)
symbol—a symbol.
plist, new-plist—a property list.
10.1.0 14 10.1.0 16Accesses the property list of symbol.
(setq sym (gensym)) → #:G9723 (symbol-plist sym) → () (setf (get sym 'prop1) 'val1) → VAL1 (symbol-plist sym) → (PROP1 VAL1) (setf (get sym 'prop2) 'val2) → VAL2 (symbol-plist sym) → (PROP2 VAL2 PROP1 VAL1) (setf (symbol-plist sym) (list 'prop3 'val3)) → (PROP3 VAL3) (symbol-plist sym) → (PROP3 VAL3)
None.
None.
Should signal an error of type type-error if symbol is not a symbol.
get, remprop !!! Barmar thinks there should be a concept section describing
the format of a plist.
The use of setf should be avoided, since a symbol's property list is a global resource that can contain information established and depended upon by unrelated programs in the same Lisp image.