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
809d1e8a
Commit
809d1e8a
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Added declare ignorable to the lambda created by deferr, so the args don't
have to be used.
parent
8cdb44b6
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/interr.lisp
+2
-1
2 additions, 1 deletion
code/interr.lisp
with
2 additions
and
1 deletion
code/interr.lisp
+
2
−
1
View file @
809d1e8a
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/interr.lisp,v 1.
7
1990/08/1
2 00:40:55
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/interr.lisp,v 1.
8
1990/08/1
4 16:27:23
wlott Exp $
;;;
;;;
;;; Functions and macros to define and deal with internal errors (i.e.
;;; Functions and macros to define and deal with internal errors (i.e.
;;; problems that can be signaled from assembler code).
;;; problems that can be signaled from assembler code).
...
@@ -107,6 +107,7 @@
...
@@ -107,6 +107,7 @@
,
(
meta-error-number
name
)
,
(
meta-error-number
name
)
,
description
,
description
#'
(
lambda
(
name
,
fp
,
sigcontext
,
sc-offsets
)
#'
(
lambda
(
name
,
fp
,
sigcontext
,
sc-offsets
)
(
declare
(
ignorable
name
,
fp
,
sigcontext
,
sc-offset
))
(
macrolet
((
set-value
(
var
value
)
(
macrolet
((
set-value
(
var
value
)
(
let
((
pos
(
position
var
',required
)))
(
let
((
pos
(
position
var
',required
)))
(
unless
pos
(
unless
pos
...
...
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