Changeset 857


Ignore:
Timestamp:
Aug 6, 2004, 12:40:39 AM (20 years ago)
Author:
Gary Byers
Message:

distinguish finding NIL from not finding symbol in MAYBE-PRINT-FAST

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lib/pprint.lisp

    r326 r857  
    18181818           (cond ((and (or is-key (eq p *package*)
    18191819                           (and ;*package* ;can be NIL on symbolics
    1820                                 (eq object (find-symbol s))))
     1820                            (multiple-value-bind (symbol type) (find-symbol s)
     1821                              (and type (eq object symbol)))))
    18211822                       (eq (readtable-case *readtable*) :upcase)
    18221823                       (neq *print-case* :studly)
Note: See TracChangeset for help on using the changeset viewer.