Make examples in Output Streams stand on their own.

This commit is contained in:
Richard M. Stallman 1996-07-29 23:49:18 +00:00
parent dd7d85bab7
commit 3b97925851

View file

@ -389,6 +389,11 @@ initially located as shown immediately before the @samp{h} in
@cindex print example
@example
@group
(setq m (set-marker (make-marker) 10 (get-buffer "foo")))
@result{} #<marker at 10 in foo>
@end group
@group
---------- Buffer: foo ----------
This is t@point{}he contents of foo.
@ -398,6 +403,10 @@ This is t@point{}he contents of foo.
(print "This is the output" (get-buffer "foo"))
@result{} "This is the output"
@group
m
@result{} #<marker at 32 in foo>
@end group
@group
---------- Buffer: foo ----------
This is t