1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 13:30:26 +02:00

* Remove doc for read-and-eval! and eval2.

This commit is contained in:
Neil Jerram 2001-10-05 18:05:10 +00:00
parent 14282d0f5c
commit a599743cdc
2 changed files with 6 additions and 15 deletions

View file

@ -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'.

View file

@ -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