From: Stephen Adams Date: Mon, 17 Oct 1994 16:08:36 +0000 (+0000) Subject: Corrected small detail in Win32 package reference. X-Git-Tag: 20090517-FFI~7064 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=3b6492ddf04a453a91d6da537a49fa81b62eb01a;p=mit-scheme.git Corrected small detail in Win32 package reference. --- diff --git a/v7/doc/ref-manual/scheme.texinfo b/v7/doc/ref-manual/scheme.texinfo index 09e6be61c..9cdaea69e 100644 --- a/v7/doc/ref-manual/scheme.texinfo +++ b/v7/doc/ref-manual/scheme.texinfo @@ -2,7 +2,7 @@ @iftex @finalout @end iftex -@comment $Id: scheme.texinfo,v 1.45 1994/10/13 23:24:17 adams Exp $ +@comment $Id: scheme.texinfo,v 1.46 1994/10/17 16:08:36 adams Exp $ @comment %**start of header (This is for running Texinfo on a region.) @setfilename scheme @settitle MIT Scheme Reference @@ -17081,10 +17081,13 @@ produced automagically. Most of the @code{#define}-symbols contain an underscore so there are not many name clashes. There is one very notable name clash, however: @code{ERROR} is @code{#define}d to 0, which shadows the scheme procedure @code{error} in the root package -environment. To signal an error, use @code{access}: +environment. To signal an error, use @code{access} to get @code{error} +from the system global environment: @example -((access error ()) "Whine moan" ...) +(declare (usual-integrations)) +... +((access error system-global-environment) "Complain" ...) @end example