changeset 15800:18c0e05d1bff

Make examples in Output Streams stand on their own.
author Richard M. Stallman <rms@gnu.org>
date Mon, 29 Jul 1996 23:49:18 +0000
parents 2a1123f30c73
children b0bd5de2ce82
files lispref/streams.texi
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/streams.texi	Mon Jul 29 23:39:34 1996 +0000
+++ b/lispref/streams.texi	Mon Jul 29 23:49:18 1996 +0000
@@ -390,6 +390,11 @@
 @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.
 ---------- Buffer: foo ----------
@@ -399,6 +404,10 @@
      @result{} "This is the output"
 
 @group
+m
+     @result{} #<marker at 32 in foo>
+@end group
+@group
 ---------- Buffer: foo ----------
 This is t
 "This is the output"