Skip to content
Snippets Groups Projects
Commit 357b4684 authored by ram's avatar ram
Browse files

special-form-p -> special-operator-p

parent 9d4a287e
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.24 1993/05/29 07:00:59 wlott Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.25 1993/06/23 19:32:27 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -396,7 +396,7 @@
;; Describe the function cell.
(cond ((macro-function x)
(describe-function (macro-function x) :macro x))
((special-form-p x)
((special-operator-p x)
(desc-doc x 'function "Special form"))
((fboundp x)
(describe-function (fdefinition x) :function x)))
......
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/ntrace.lisp,v 1.10 1992/12/08 20:10:16 wlott Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/ntrace.lisp,v 1.11 1993/06/23 19:33:02 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -141,7 +141,7 @@
(res named-p)
(typecase x
(symbol
(cond ((special-form-p x)
(cond ((special-operator-p x)
(error "Can't trace special form ~S." x))
((macro-function x))
(t
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment