[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Pretty Printing



Is Chapter 27 "Pretty Printing" of "Common Lisp, Steele" available in MCL 1.3.2?
The following do not produce the intended results as shown on p.750 of the Steele's book?  


(setq *print-pretty* t)

(let ((*print-right-margin* 25) (*print-lines* 3))
	(pprint '(progn (setq a 1 b 2 c 3 d 4))))

How to activate print-pretty?  Thanks.

Sheldon Shen