Skip to content
Snippets Groups Projects
Commit eca19790 authored by Robert P. Goldman's avatar Robert P. Goldman
Browse files

Added docstrings for behavior variables.

Added docstrings for *compile-file-warnings-behaviour* and
*compile-file-failure-behaviour*.
parent 10f0ed60
No related branches found
No related tags found
No related merge requests found
...@@ -344,9 +344,15 @@ You can compare this string with e.g.: ...@@ -344,9 +344,15 @@ You can compare this string with e.g.:
Defaults to `t`.") Defaults to `t`.")
(defvar *compile-file-warnings-behaviour* :warn) (defvar *compile-file-warnings-behaviour* :warn
"How should ASDF react if it encounters a warning when compiling a
(defvar *compile-file-failure-behaviour* #+sbcl :error #-sbcl :warn) file? Valid values are :error, :warn, and :ignore.")
(defvar *compile-file-failure-behaviour* #+sbcl :error #-sbcl :warn
"How should ASDF react if it encounters a failure \(per the
ANSI spec of COMPILE-FILE\) when compiling a file? Valid values are
:error, :warn, and :ignore. Note that ASDF ALWAYS raises an error
if it fails to create an output file when compiling.")
(defvar *verbose-out* nil) (defvar *verbose-out* nil)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment