Ticket #885 (closed defect: fixed)
22.1.3.5 conformance
| Reported by: | pjb@… | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | ANSI CL Compliance | Version: | trunk |
| Keywords: | Cc: |
Description
As per 22.1.3.5,
(write (quote (john (quote s) weight)) :pretty nil :readably nil)
should print
(JOHN (QUOTE S) WEIGHT)
but instead it prints:
(JOHN 'S WEIGHT)
[and similarly for :readtably t].
========================================================================
Implementation: Clozure Common Lisp Version 1.7-dev-r14788M-trunk (LinuxX8664) on x86_64
Reading of: "(write (quote (john (quote s) weight)) :pretty nil :readably nil)"
signaled no error
Evaluation of: (WRITE '(JOHN 'S WEIGHT) :PRETTY NIL :READABLY NIL)
signaled no error
wrote nothing on *ERROR-OUTPUT*
wrote the following *STANDARD-OUTPUT* (lines excluded):
------------------------------------------------------------------------
(JOHN 'S WEIGHT)
------------------------------------------------------------------------
returned the following value:
--> (JOHN 'S WEIGHT)
========================================================================
Change History
Note: See
TracTickets for help on using
tickets.
