summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2001-10-05 18:05:10 +0000
committerNeil Jerram <neil@ossau.uklinux.net>2001-10-05 18:05:10 +0000
commita599743cdc4864b233200300e65b52def6b8072b (patch)
tree29f064566f9233ddcb4e07b1f1cf47f2a08825f8
parent14282d0f5c839816aff0e83466b6ea46e51cdac0 (diff)
downloadguile-a599743cdc4864b233200300e65b52def6b8072b.tar.gz
* Remove doc for read-and-eval! and eval2.
-rw-r--r--doc/ref/ChangeLog6
-rw-r--r--doc/ref/scheme-evaluation.texi15
2 files changed, 6 insertions, 15 deletions
diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog
index b2dfb17e0..9f2eb9980 100644
--- a/doc/ref/ChangeLog
+++ b/doc/ref/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-05 Neil Jerram <neil@ossau.uklinux.net>
+
+ * scheme-evaluation.texi (Fly Evaluation): Removed documentation
+ for `read-and-eval!' and `eval2'. (Thanks to Alex Schroeder for
+ noticing that they'd disappeared!)
+
2001-10-05 Thien-Thi Nguyen <ttn@glug.org>
* scheme-io.texi (Writing): Add entry for `display'.
diff --git a/doc/ref/scheme-evaluation.texi b/doc/ref/scheme-evaluation.texi
index 210f26040..094214a76 100644
--- a/doc/ref/scheme-evaluation.texi
+++ b/doc/ref/scheme-evaluation.texi
@@ -224,21 +224,6 @@ Evaluate @var{exp} in the top-level environment specified by
the current module.
@end deffn
-@deffn primitive eval2 obj env_thunk
-Evaluate @var{exp}, a Scheme expression, in the environment
-designated by @var{lookup}, a symbol-lookup function.
-Do not use this version of eval, it does not play well
-with the module system. Use @code{eval} or
-@code{primitive-eval} instead.
-@end deffn
-
-@deffn primitive read-and-eval! [port]
-Read a form from @var{port} (standard input by default), and evaluate it
-(memoizing it in the process) in the top-level environment. If no data
-is left to be read from @var{port}, an @code{end-of-file} error is
-signalled.
-@end deffn
-
@node Loading
@section Loading Scheme Code from File