Change quotation example to reflect exact output from MIT Scheme.
authorChris Hanson <org/chris-hanson/cph>
Tue, 5 Sep 2000 00:10:45 +0000 (00:10 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 5 Sep 2000 00:10:45 +0000 (00:10 +0000)
v7/doc/ref-manual/scheme.texinfo

index 9b60987162b672c07340f1746e82aa07d77209d4..570fdb0ac278ee9bc2dd922ca511bb726fda33c3 100644 (file)
@@ -2,7 +2,7 @@
 @iftex
 @finalout
 @end iftex
-@comment $Id: scheme.texinfo,v 1.92 2000/07/21 17:59:22 cph Exp $
+@comment $Id: scheme.texinfo,v 1.93 2000/09/05 00:10:45 cph Exp $
 @comment %**start of header (This is for running Texinfo on a region.)
 @setfilename scheme.info
 @settitle MIT Scheme Reference
@@ -44,9 +44,9 @@ Free Documentation License".
 
 @titlepage
 @title{MIT Scheme Reference Manual}
-@subtitle Edition 1.92
+@subtitle Edition 1.93
 @subtitle for Scheme Release 7.5
-@subtitle 21 July 2000
+@subtitle 4 September 2000
 @author by Chris Hanson
 @author the MIT Scheme Team
 @author and a cast of thousands
@@ -2200,8 +2200,8 @@ The two notations are equivalent in all respects.
 'a                                      @result{}  a
 '#(a b c)                               @result{}  #(a b c)
 '(+ 1 2)                                @result{}  (+ 1 2)
-'(quote a)                              @result{}  'a
-''a                                     @result{}  'a
+'(quote a)                              @result{}  (quote a)
+''a                                     @result{}  (quote a)
 @end group
 @end example