diff options
Diffstat (limited to 'src/interp/vmlisp.lisp')
-rw-r--r-- | src/interp/vmlisp.lisp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/interp/vmlisp.lisp b/src/interp/vmlisp.lisp index 811b7069..8e327b97 100644 --- a/src/interp/vmlisp.lisp +++ b/src/interp/vmlisp.lisp @@ -221,9 +221,6 @@ (defmacro minus (x) `(- ,x)) -(defmacro mrp (x) - `(special-form-p ,x)) - (defmacro namederrset (id iexp &rest item) (declare (ignore item)) `(catch ,id ,iexp)) @@ -463,9 +460,6 @@ (nsubstitute '(progn) nil body) ;don't treat NIL as a label `(block seq (tagbody ,@(nreverse body) ,val)))) -(defmacro sfp (x) - `(special-form-p ,x)) - (defmacro sintp (n) `(typep ,n 'fixnum)) |