Changeset 11277
- Timestamp:
- 08/07/08 20:36:02 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Stream.java
r11158 r11277 3 3 * 4 4 * Copyright (C) 2003-2007 Peter Graves 5 * $Id: Stream.java,v 1.15 4 2007-02-23 21:17:34 pisoExp $5 * $Id: Stream.java,v 1.155 2008-08-07 20:36:02 ehuelsmann Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 425 425 { 426 426 final LispThread thread = LispThread.currentThread(); 427 LispObject obj = read(true, NIL, false, thread);427 LispObject obj = read(true, NIL, true, thread); 428 428 if (Symbol.READ_SUPPRESS.symbolValue(thread) != NIL) 429 429 return NIL; … … 473 473 { 474 474 final LispThread thread = LispThread.currentThread(); 475 LispObject obj = faslRead(true, NIL, false, thread);475 LispObject obj = faslRead(true, NIL, true, thread); 476 476 if (Symbol.READ_SUPPRESS.symbolValue(thread) != NIL) 477 477 return NIL;
Note: See TracChangeset
for help on using the changeset viewer.