Changeset 3773
- Timestamp:
- 09/14/03 17:03:42 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Array.java
r3538 r3773 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: Array.java,v 1. 7 2003-08-27 17:28:25piso Exp $5 * $Id: Array.java,v 1.8 2003-09-14 17:03:42 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 72 72 73 73 private int setInitialContents(int axis, int[] dims, LispObject contents, 74 int index) throws LispError 74 int index) 75 throws LispError 75 76 { 76 77 if (dims.length == 0) { … … 83 84 ++index; 84 85 } else { 85 if ((contents.getType() & TYPE_SEQUENCE) == 0)86 throw new TypeError(contents, "sequence");87 86 int dim = dims[0]; 88 87 if (dim != contents.length())
Note: See TracChangeset
for help on using the changeset viewer.