1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Describe new 1.4 compatability behavior of

-e option.
This commit is contained in:
Marius Vollmer 2005-01-14 16:24:09 +00:00
parent 39e707a130
commit e70c841fe6

View file

@ -132,6 +132,15 @@ that is defined in the script. It can also be of the form @code{(@@
@var{module-name} @var{symbol})} and in that case, the symbol is
looked up in the module named @var{module-name}.
For compatibility with some versions of Guile 1.4, you can also use the
form @code{(symbol ...)} (that is, a list of only symbols that doesn't
start with @code{@@}), which is equivalent to @code{(@@ (symbol ...)
main)}, or @code{(symbol ...) symbol} (that is, a list of only symbols
followed by a symbol), which is equivalent to @code{(@@ (symbol ...)
symbol)}. We recommend to use the equivalent forms directly since they
corresponf to the @code{(@@ ...)} read syntax that can be used in
normal code, @xref{Using Guile Modules}.
@xref{Scripting Examples}.
@item -ds