Changeset 13187


Ignore:
Timestamp:
01/27/11 21:08:52 (13 years ago)
Author:
ehuelsmann
Message:

Fix #125: FASL reader should not convert symbol case [Qi FASL loading issues].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/FaslReadtable.java

    r12650 r13187  
    104104        dispatchTables.constants['#'] = dt;
    105105
    106         readtableCase = Keyword.UPCASE;
     106        readtableCase = Keyword.PRESERVE;
     107        // after all, all symbols will have been uppercased by the reader,
     108        // if applicable, when reading the source file; so, any lower-case
     109        // symbols are really meant to be lower case, even if printed without
     110        // pipe characters, which may happen if  the READTABLE-CASE of the
     111        // current readtable is :PRESERVE when printing the symbols
    107112    }
    108113
Note: See TracChangeset for help on using the changeset viewer.