Page 140 Table of Contents Index Page 142
Chapters
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30
A, B, C, D, E



CHAPTER 15. EXTENDED STREAM OUTPUT

=> with-output-buffered (medium &optional (buffer-p t)) &body body [Macro]
If buffer-p is true (the default), this causes the medium designated by medium to start buffering
output, and evaluates body in that context. If buffer-p is false, force-output will be called
before body is evaluated. When body is exited (or aborted from), force-output will be called if
output buffering will be disabled after with-output-buffered is exited.

The medium argument is not evaluated, and must be a symbol that is bound to a medium. If
medium is t, *standard-output* is used. body may have zero or more declarations as its first
forms.


Page 140 Table of Contents Index Page 142
Chapters
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30
A, B, C, D, E