Function: setplist
setplist is a function defined in data.c.
Signature
(setplist SYMBOL NEWPLIST)
Documentation
Set SYMBOL's property list to NEWPLIST, and return NEWPLIST.
Source Code
// Defined in /usr/src/emacs/src/data.c
{
CHECK_SYMBOL (symbol);
set_symbol_plist (symbol, newplist);
return newplist;
}