summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/ref/ChangeLog6
-rw-r--r--doc/ref/data-rep.texi3
-rw-r--r--doc/ref/scheme-evaluation.texi4
-rw-r--r--doc/ref/scheme-options.texi1
-rw-r--r--doc/ref/scheme-translation.texi2
5 files changed, 12 insertions, 4 deletions
diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog
index ec8a5ada7..18ecbffe5 100644
--- a/doc/ref/ChangeLog
+++ b/doc/ref/ChangeLog
@@ -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.
diff --git a/doc/ref/data-rep.texi b/doc/ref/data-rep.texi
index d3a9aa678..6e0dc1ae0 100644
--- a/doc/ref/data-rep.texi
+++ b/doc/ref/data-rep.texi
@@ -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
diff --git a/doc/ref/scheme-evaluation.texi b/doc/ref/scheme-evaluation.texi
index d9854fe6d..fbfcd87a8 100644
--- a/doc/ref/scheme-evaluation.texi
+++ b/doc/ref/scheme-evaluation.texi
@@ -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
diff --git a/doc/ref/scheme-options.texi b/doc/ref/scheme-options.texi
index 12c49c3a8..e2ab70429 100644
--- a/doc/ref/scheme-options.texi
+++ b/doc/ref/scheme-options.texi
@@ -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.
diff --git a/doc/ref/scheme-translation.texi b/doc/ref/scheme-translation.texi
index e0e1aff41..4d398c60f 100644
--- a/doc/ref/scheme-translation.texi
+++ b/doc/ref/scheme-translation.texi
@@ -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