Corrected small detail in Win32 package reference.
authorStephen Adams <edu/mit/csail/zurich/adams>
Mon, 17 Oct 1994 16:08:36 +0000 (16:08 +0000)
committerStephen Adams <edu/mit/csail/zurich/adams>
Mon, 17 Oct 1994 16:08:36 +0000 (16:08 +0000)
v7/doc/ref-manual/scheme.texinfo

index 09e6be61c74c6fbf32760b583ad341c347b4a451..9cdaea69eb8d1bf93158b09698fb6d8564b10b6c 100644 (file)
@@ -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