Skip to content
Snippets Groups Projects
Commit 959b4b80 authored by ram's avatar ram
Browse files

export class-typep, fix typo in equalp.

parent 3ce57ec7
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pred.lisp,v 1.28.1.4 1993/02/08 22:24:32 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pred.lisp,v 1.28.1.5 1993/02/10 23:40:13 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
(in-package "KERNEL") (in-package "KERNEL")
(export '(%instancep instance fixnump bignump bitp ratiop weak-pointer-p (export '(%instancep instance fixnump bignump bitp ratiop weak-pointer-p
%typep)) %typep class-typep))
(in-package "SYSTEM") (in-package "SYSTEM")
(export '(system-area-pointer system-area-pointer-p)) (export '(system-area-pointer system-area-pointer-p))
...@@ -371,7 +371,7 @@ ...@@ -371,7 +371,7 @@
#-ns-boot #-ns-boot
((%instancep x) ((%instancep x)
(let* ((layout-x (%instance-layout x)) (let* ((layout-x (%instance-layout x))
(length (layout-length layout-x))) (len (layout-length layout-x)))
(and (%instancep y) (and (%instancep y)
(eq layout-x (%instance-layout y)) (eq layout-x (%instance-layout y))
(structure-class-p (layout-class layout-x)) (structure-class-p (layout-class layout-x))
......
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