Changeset 4713
- Timestamp:
- 11/12/03 21:32:23 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/subtypep.lisp
r4696 r4713 2 2 ;;; 3 3 ;;; Copyright (C) 2003 Peter Graves 4 ;;; $Id: subtypep.lisp,v 1.2 6 2003-11-11 18:30:13 piso Exp $4 ;;; $Id: subtypep.lisp,v 1.27 2003-11-12 21:32:23 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 221 221 222 222 (defun subtypep (type1 type2) 223 (when (or (eq type1 type2)223 (when (or (equal type1 type2) 224 224 (null type1) 225 225 (eq type2 t))
Note: See TracChangeset
for help on using the changeset viewer.