Changeset 9242 for trunk/j/src/org/armedbear/lisp/deftype.lisp
- Timestamp:
- 05/24/05 18:58:02 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/deftype.lisp
r8640 r9242 2 2 ;;; 3 3 ;;; Copyright (C) 2004-2005 Peter Graves 4 ;;; $Id: deftype.lisp,v 1. 4 2005-02-26 17:36:19piso Exp $4 ;;; $Id: deftype.lisp,v 1.5 2005-05-24 18:58:02 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 44 44 (loop 45 45 (if (consp type) 46 (setf tp (car type) i (cdr type)) 47 (setf tp type i nil)) 46 (setf tp (%car type) i (%cdr type)) 47 (setf tp type 48 i nil)) 48 49 (if (and (symbolp tp) (get tp 'deftype-definition)) 49 50 (setf type (apply (get tp 'deftype-definition) i))
Note: See TracChangeset
for help on using the changeset viewer.