Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Moringen
asdf
Commits
c4ae2c44
Commit
c4ae2c44
authored
20 years ago
by
Christophe Rhodes
Browse files
Options
Downloads
Patches
Plain Diff
export condition readers ERROR-COMPONENT and ERROR-OPERATION
parent
c7738c62
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README
+4
-3
4 additions, 3 deletions
README
asdf.lisp
+3
-2
3 additions, 2 deletions
asdf.lisp
with
7 additions
and
5 deletions
README
+
4
−
3
View file @
c4ae2c44
$Id: README,v 1.3
7
2004/0
5
/1
6 18:19:54 dan_b
Exp $ -*- Text -*-
$Id: README,v 1.3
8
2004/0
7
/1
9 21:18:07 crhodes
Exp $ -*- Text -*-
The canonical documentation for asdf is in the file asdf.texinfo.
The canonical documentation for asdf is in the file asdf.texinfo.
The significant overlap between this file and that will one day be
The significant overlap between this file and that will one day be
...
@@ -619,11 +619,12 @@ interactively re-evaluates that form
...
@@ -619,11 +619,12 @@ interactively re-evaluates that form
It is an error to define a system incorrectly: an implementation may
It is an error to define a system incorrectly: an implementation may
detect this and signal a generalised instance of
detect this and signal a generalised instance of
SYSTEM-DEFINITION-ERROR
SYSTEM-DEFINITION-ERROR
.
Operations may go wrong (for example when source files contain
Operations may go wrong (for example when source files contain
errors). These are signalled using generalised instances of
errors). These are signalled using generalised instances of
OPERATION-ERROR
OPERATION-ERROR, with condition readers ERROR-COMPONENT and
ERROR-OPERATION for the component and operation which erred.
* Compilation error and warning handling
* Compilation error and warning handling
...
...
This diff is collapsed.
Click to expand it.
asdf.lisp
+
3
−
2
View file @
c4ae2c44
;;; This is asdf: Another System Definition Facility. $Revision: 1.8
5
$
;;; This is asdf: Another System Definition Facility. $Revision: 1.8
6
$
;;;
;;;
;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; <cclan-list@lists.sf.net>. But note first that the canonical
;;; <cclan-list@lists.sf.net>. But note first that the canonical
...
@@ -90,6 +90,7 @@
...
@@ -90,6 +90,7 @@
#:*asdf-revision*
#:*asdf-revision*
#:operation-error
#:compile-failed
#:compile-warned
#:compile-error
#:operation-error
#:compile-failed
#:compile-warned
#:compile-error
#:error-component
#:error-operation
#:system-definition-error
#:system-definition-error
#:missing-component
#:missing-component
#:missing-dependency
#:missing-dependency
...
@@ -107,7 +108,7 @@
...
@@ -107,7 +108,7 @@
(
in-package
#:asdf
)
(
in-package
#:asdf
)
(
defvar
*asdf-revision*
(
let*
((
v
"$Revision: 1.8
5
$"
)
(
defvar
*asdf-revision*
(
let*
((
v
"$Revision: 1.8
6
$"
)
(
colon
(
or
(
position
#\:
v
)
-1
))
(
colon
(
or
(
position
#\:
v
)
-1
))
(
dot
(
position
#\.
v
)))
(
dot
(
position
#\.
v
)))
(
and
v
colon
dot
(
and
v
colon
dot
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment