Changeset 3750
- Timestamp:
- 09/14/03 12:06:08 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/typep.lisp
r3740 r3750 2 2 ;;; 3 3 ;;; Copyright (C) 2003 Peter Graves 4 ;;; $Id: typep.lisp,v 1. 1 2003-09-14 01:39:17piso Exp $4 ;;; $Id: typep.lisp,v 1.2 2003-09-14 12:06:08 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 72 72 (and (arrayp object) 73 73 (or (null i) (eq (car i) '*) 74 (equal (array-element-type object) ( car i)))74 (equal (array-element-type object) (upgraded-array-element-type (car i)))) 75 75 (or (null (cdr i)) (eq (cadr i) '*) 76 76 (if (listp (cadr i))
Note: See TracChangeset
for help on using the changeset viewer.