Opened 11 years ago
#86 new defect
(let ((*print-base* 16)) (print 'car)) -> |CAR|
Reported by: | Raymond Toy | Owned by: | somebody |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | Core | Version: | 2013-08 |
Keywords: | Cc: |
Description
As the subject says
(let ((*print-base* 16)) (print 'car))
prints as |CAR|
because CMUCL
thinks this is a potential number. CMUCL
doesn't have any potential numbers so it could just print it as CAR
. The issue comes from symbol-quotep
.
Note: See
TracTickets for help on using
tickets.