]> git.eshelyaron.com Git - emacs.git/commitdiff
Make examples in Output Streams stand on their own.
authorRichard M. Stallman <rms@gnu.org>
Mon, 29 Jul 1996 23:49:18 +0000 (23:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 29 Jul 1996 23:49:18 +0000 (23:49 +0000)
lispref/streams.texi

index ec78da933a8850c9f2722a48e04fbf54245884eb..4088c80ad7f2d5f0b4e1438ad51c95f68eac2445 100644 (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