Changeset 4254
- Timestamp:
- 10/08/03 17:34:19 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/copy-seq.lisp
r4251 r4254 2 2 ;;; 3 3 ;;; Copyright (C) 2003 Peter Graves 4 ;;; $Id: copy-seq.lisp,v 1. 3 2003-10-08 13:52:22piso Exp $4 ;;; $Id: copy-seq.lisp,v 1.4 2003-10-08 17:34:19 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 27 27 (copy (make-sequence-of-type ,type length))) 28 28 ((= index length) copy) 29 ( setf (aref copy index)(aref ,sequence index)))))29 (%vset copy index (aref ,sequence index))))) 30 30 31 31 (defmacro list-copy-seq (list)
Note: See TracChangeset
for help on using the changeset viewer.