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

Merged the two short chapters on error-handling into one.

parent a5d5fe8d
No related branches found
No related tags found
No related merge requests found
...@@ -73,7 +73,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ...@@ -73,7 +73,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* The object model of ASDF:: * The object model of ASDF::
* Controlling where ASDF saves compiled files:: * Controlling where ASDF saves compiled files::
* Error handling:: * Error handling::
* Compilation error and warning handling::
* Miscellaneous additional functionality:: * Miscellaneous additional functionality::
* Getting the latest version:: * Getting the latest version::
* FAQ:: * FAQ::
...@@ -1509,12 +1508,14 @@ to some thus-named subdirectory of @file{~/.cache/common-lisp/}. ...@@ -1509,12 +1508,14 @@ to some thus-named subdirectory of @file{~/.cache/common-lisp/}.
See the document @file{README.asdf-output-translations} See the document @file{README.asdf-output-translations}
for a full specification on how to configure @code{asdf-output-translations}. for a full specification on how to configure @code{asdf-output-translations}.
@node Error handling, Compilation error and warning handling, Controlling where ASDF saves compiled files, Top @node Error handling, Miscellaneous additional functionality, Controlling where ASDF saves compiled files, Top
@comment node-name, next, previous, up @comment node-name, next, previous, up
@chapter Error handling @chapter Error handling
@findex SYSTEM-DEFINITION-ERROR @findex SYSTEM-DEFINITION-ERROR
@findex OPERATION-ERROR @findex OPERATION-ERROR
@section ASDF errors
It is an error to define a system incorrectly: It is an error to define a system incorrectly:
an implementation may detect this and signal a generalised instance of an implementation may detect this and signal a generalised instance of
@code{SYSTEM-DEFINITION-ERROR}. @code{SYSTEM-DEFINITION-ERROR}.
...@@ -1523,9 +1524,7 @@ Operations may go wrong (for example when source files contain errors). ...@@ -1523,9 +1524,7 @@ Operations may go wrong (for example when source files contain errors).
These are signalled using generalised instances of These are signalled using generalised instances of
@code{OPERATION-ERROR}. @code{OPERATION-ERROR}.
@node Compilation error and warning handling, Miscellaneous additional functionality, Error handling, Top @section Compilation error and warning handling
@comment node-name, next, previous, up
@chapter Compilation error and warning handling
@vindex *compile-file-warnings-behaviour* @vindex *compile-file-warnings-behaviour*
@vindex *compile-file-errors-behavior* @vindex *compile-file-errors-behavior*
...@@ -1536,7 +1535,7 @@ control the handling of any such events. ...@@ -1536,7 +1535,7 @@ control the handling of any such events.
The valid values for these variables are The valid values for these variables are
@code{:error}, @code{:warn}, and @code{:ignore}. @code{:error}, @code{:warn}, and @code{:ignore}.
@node Miscellaneous additional functionality, Getting the latest version, Compilation error and warning handling, Top @node Miscellaneous additional functionality, Getting the latest version, Error handling, Top
@comment node-name, next, previous, up @comment node-name, next, previous, up
@chapter Miscellaneous additional functionality @chapter Miscellaneous additional functionality
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment