Changeset 13603


Ignore:
Timestamp:
09/20/11 18:01:00 (12 years ago)
Author:
ehuelsmann
Message:

Change assertion instead of hash table type; every object other than
our fixnums should be EQ anyway. EQ makes the hash table more efficient.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/dump-form.lisp

    r13602 r13603  
    121121      (t
    122122       (unless *prevent-fasl-circle-detection*
    123          (assert (eq index t)))))))
     123         (assert (or (eq index t)
     124                     (fixnump object))))))))
    124125
    125126(declaim (ftype (function (cons stream) t) dump-cons))
Note: See TracChangeset for help on using the changeset viewer.