Changeset 11277


Ignore:
Timestamp:
08/07/08 20:36:02 (15 years ago)
Author:
ehuelsmann
Message:

Fix #n# replacement inside structures.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/lisp/Stream.java

    r11158 r11277  
    33 *
    44 * Copyright (C) 2003-2007 Peter Graves
    5  * $Id: Stream.java,v 1.154 2007-02-23 21:17:34 piso Exp $
     5 * $Id: Stream.java,v 1.155 2008-08-07 20:36:02 ehuelsmann Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    425425  {
    426426    final LispThread thread = LispThread.currentThread();
    427     LispObject obj = read(true, NIL, false, thread);
     427    LispObject obj = read(true, NIL, true, thread);
    428428    if (Symbol.READ_SUPPRESS.symbolValue(thread) != NIL)
    429429      return NIL;
     
    473473  {
    474474    final LispThread thread = LispThread.currentThread();
    475     LispObject obj = faslRead(true, NIL, false, thread);
     475    LispObject obj = faslRead(true, NIL, true, thread);
    476476    if (Symbol.READ_SUPPRESS.symbolValue(thread) != NIL)
    477477      return NIL;
Note: See TracChangeset for help on using the changeset viewer.