Changeset 4187
- Timestamp:
- 10/04/03 01:47:24 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/LispThread.java
r4184 r4187 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: LispThread.java,v 1.1 7 2003-10-04 01:17:51piso Exp $5 * $Id: LispThread.java,v 1.18 2003-10-04 01:47:24 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 183 183 public boolean isValidCatchTag(LispObject tag) 184 184 { 185 for (int i = stack.size(); i-- > 0;) {186 if ( stack.get(i) == tag)185 for (int i = catchTags.size(); i-- > 0;) { 186 if (catchTags.get(i) == tag) 187 187 return true; 188 188 }
Note: See TracChangeset
for help on using the changeset viewer.