[movitz-cvs] CVS update: movitz/losp/muerte/typep.lisp
Frode Vatvedt Fjeld
ffjeld at common-lisp.net
Tue May 24 06:33:48 UTC 2005
Update of /project/movitz/cvsroot/movitz/losp/muerte
In directory common-lisp.net:/tmp/cvs-serv11829
Modified Files:
typep.lisp
Log Message:
Moved some code around, to fix compilation order.
Date: Tue May 24 08:33:47 2005
Author: ffjeld
Index: movitz/losp/muerte/typep.lisp
diff -u movitz/losp/muerte/typep.lisp:1.43 movitz/losp/muerte/typep.lisp:1.44
--- movitz/losp/muerte/typep.lisp:1.43 Fri Apr 15 09:00:31 2005
+++ movitz/losp/muerte/typep.lisp Tue May 24 08:33:46 2005
@@ -9,7 +9,7 @@
;;;; Created at: Fri Dec 8 11:07:53 2000
;;;; Distribution: See the accompanying file COPYING.
;;;;
-;;;; $Id: typep.lisp,v 1.43 2005/04/15 07:00:31 ffjeld Exp $
+;;;; $Id: typep.lisp,v 1.44 2005/05/24 06:33:46 ffjeld Exp $
;;;;
;;;;------------------------------------------------------------------
@@ -585,13 +585,6 @@
(typep x 'code-vector))
;;;
-
-(define-typep rational (x &optional (lower-limit '*) (upper-limit '*))
- (and (typep x 'rational)
- (or (eq lower-limit '*)
- (<= lower-limit x))
- (or (eq upper-limit '*)
- (<= x upper-limit))))
(define-typep and (x &rest types)
(declare (dynamic-extent types))
More information about the Movitz-cvs
mailing list