Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Carl Shapiro
cmucl
Commits
ed35bc4c
Commit
ed35bc4c
authored
21 years ago
by
gerd
Browse files
Options
Downloads
Patches
Plain Diff
* src/compiler/fndb.lisp (cerror): First arg may be a function.
parent
5cb8cc56
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
compiler/fndb.lisp
+2
-2
2 additions, 2 deletions
compiler/fndb.lisp
general-info/release-19a.txt
+1
-0
1 addition, 0 deletions
general-info/release-19a.txt
with
3 additions
and
2 deletions
compiler/fndb.lisp
+
2
−
2
View file @
ed35bc4c
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.11
6
2003/07/01 15:
0
4:0
9
gerd Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.11
7
2003/07/01 15:
4
4:
4
0 gerd Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -1050,7 +1050,7 @@
...
@@ -1050,7 +1050,7 @@
;;;; In the "Errors" chapter:
;;;; In the "Errors" chapter:
(
defknown
error
(
t
&rest
t
)
nil
)
; Never returns...
(
defknown
error
(
t
&rest
t
)
nil
)
; Never returns...
(
defknown
cerror
(
string
t
&rest
t
)
null
)
(
defknown
cerror
(
(
or
string
function
)
t
&rest
t
)
null
)
(
defknown
warn
(
t
&rest
t
)
null
)
(
defknown
warn
(
t
&rest
t
)
null
)
(
defknown
break
(
&optional
t
&rest
t
)
null
)
(
defknown
break
(
&optional
t
&rest
t
)
null
)
...
...
This diff is collapsed.
Click to expand it.
general-info/release-19a.txt
+
1
−
0
View file @
ed35bc4c
...
@@ -128,6 +128,7 @@ New in this release:
...
@@ -128,6 +128,7 @@ New in this release:
returning values specified by the standard when SLOT-UNBOUND
returning values specified by the standard when SLOT-UNBOUND
or SLOT-MISSING are called and return.
or SLOT-MISSING are called and return.
- NTH and NTHCDR accepting bignums as first argument.
- NTH and NTHCDR accepting bignums as first argument.
- First arg of CERROR may be a function.
* Numerous bugfixes:
* Numerous bugfixes:
- NSET-EXCLUSIVE-OR returns the same results as SET-EXCLUSIVE-OR
- NSET-EXCLUSIVE-OR returns the same results as SET-EXCLUSIVE-OR
...
...
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