Various minor enhancements ported from the stable CVS branch.
authorNeil Jerram <neil@ossau.uklinux.net>
Tue, 12 Mar 2002 21:08:57 +0000 (21:08 +0000)
committerNeil Jerram <neil@ossau.uklinux.net>
Tue, 12 Mar 2002 21:08:57 +0000 (21:08 +0000)
doc/ref/ChangeLog
doc/ref/data-rep.texi
doc/ref/scheme-evaluation.texi
doc/ref/scheme-options.texi
doc/ref/scheme-translation.texi

index ec8a5ad..18ecbff 100644 (file)
@@ -1,3 +1,9 @@
+2002-03-12  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * data-rep.texi, guile.texi, scheme-evaluation.texi,
+       scheme-options.texi, scheme-translation.texi: Various minor
+       enhancements ported from the stable CVS branch.
+
 2002-03-08  Thien-Thi Nguyen  <ttn@giblet.glug.org>
 
        * tools.texi (Miscellaneous Tools): New node/chapter.
index d3a9aa6..6e0dc1a 100644 (file)
@@ -46,7 +46,7 @@
 @c essay @sp 10
 @c essay @comment The title is printed in a large font.
 @c essay @title Data Representation in Guile
-@c essay @subtitle $Id: data-rep.texi,v 1.5 2002-03-01 00:19:20 dirk Exp $
+@c essay @subtitle $Id: data-rep.texi,v 1.6 2002-03-12 21:08:57 ossau Exp $
 @c essay @subtitle For use with Guile @value{VERSION}
 @c essay @author Jim Blandy
 @c essay @author Free Software Foundation
@@ -1609,6 +1609,7 @@ make_image (SCM name, SCM s_width, SCM s_height)
 @}
 @end example
 
+
 @node Type checking
 @subsection Type checking
 
index d9854fe..fbfcd87 100644 (file)
@@ -175,7 +175,7 @@ options and switches them on, @code{read-disable} switches them off.
 @deffnx {C Function} scm_read_options (setting)
 Option interface for the read options. Instead of using
 this procedure directly, use the procedures @code{read-enable},
-@code{read-disable}, @code{read-set!} and @var{read-options}.
+@code{read-disable}, @code{read-set!} and @code{read-options}.
 @end deffn
 
 
@@ -386,7 +386,7 @@ options and switches them on, @code{eval-disable} switches them off.
 @deffnx {C Function} scm_eval_options_interface (setting)
 Option interface for the evaluation options. Instead of using
 this procedure directly, use the procedures @code{eval-enable},
-@code{eval-disable}, @code{eval-set!} and @var{eval-options}.
+@code{eval-disable}, @code{eval-set!} and @code{eval-options}.
 @end deffn
 
 @c FIXME::martin: Why aren't these procedure named like the other options
index 12c49c3..e2ab704 100644 (file)
@@ -154,6 +154,7 @@ closure-hook    #f      Hook for printing closures.
 
 @node Evaluator options
 @section Evaluator options
+
 These are the evaluator options with their default values, as they are
 printed by typing @code{(eval-options 'full)} in Guile.
 
index e0e1aff..4d398c6 100644 (file)
@@ -28,7 +28,7 @@ is Scheme's end-of-list.
 @deffnx {C Function} scm_nil_cons (x, y)
 Create a new cons cell with @var{x} as the car and @var{y} as
 the cdr, but convert @var{y} to Scheme's end-of-list if it is
-a LISP nil.
+a Lisp nil.
 @end deffn
 
 @deffn {Scheme Procedure} nil-eq x y