[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SYSP
- To: REH at MIT-MC, WGD at MIT-MC
- Subject: SYSP
- From: kmp at MIT-MC (Kent M. Pitman)
- Date: Thu, 5 Feb 81 17:20:00 GMT
- Cc: (BUG LISP) at MIT-MC
- Original-date: 5 FEB 1981 1220-EST
- Sent-by: ___104 at MIT-MC
(SYSP x) returns a non-() value if x is a symbol which has a system SUBR,
LSUBR, FSUBR, or AUTOLOAD property. It also returns non-() if x is of typep
RANDOM and is in the range of the binary program space of the initial lisp
system. Otherwise, it returns NIL. It makes no claim to tell you if the
functional property in effect is the system version.
eg,
(DEFUN LOAD (X) X) => LOAD
(LOAD 'FOO) => FOO
(SYSP 'LOAD) => SUBR
(REMPROP 'LOAD 'SUBR) => (#...)
(SYSP 'LOAD) => NIL
-kmp