| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
This variable controls where output generated by autoloading and by
load is sent. The
value of this variable should be an output stream, t
or nil
. If the value is a
stream, autoloading output and load messages are sent to that
stream. If the value is t
, such messages are
sent to *terminal-io*
. If the value is nil
, load messages are sent to *standard-output*
and
autoloading messages are sent to *error-output*
. The initial value is
nil
.
Autoloading and load messages are sent only if
*load-verbose*
is non-nil
. If *load-verbose*
is nil
, the value of this variable is effectively
ignored.
Autoloading is described in Autoloading in
implementation.htm. In order to keep the image size
as small as possible, certain functionality is not loaded into the
image until needed. Certain operations, such as calling functions or
referencing certain packages causes modules defining the needed
functionality to be loaded. A message noting the autoload is sent to a
location specified by this variable, assuming *load-verbose*
is non-nil
.
Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |