Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
clim-tos
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
Alastair Bridgewater
clim-tos
Commits
771b7c6e
Commit
771b7c6e
authored
7 years ago
by
Daniel Kochmański
Browse files
Options
Downloads
Patches
Plain Diff
cleanup: remove spurious declarations
Generic function can't be declared as dynamic-extent.
parent
3e048d49
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
silica/macros.lisp
+2
-4
2 additions, 4 deletions
silica/macros.lisp
with
2 additions
and
4 deletions
silica/macros.lisp
+
2
−
4
View file @
771b7c6e
...
...
@@ -7,16 +7,14 @@
;;;"Copyright (c) 1991, 1992 Franz, Inc. All rights reserved.
;;; Portions copyright (c) 1992 Symbolics, Inc. All rights reserved."
(
defgeneric
invoke-with-sheet-medium
(
sheet
continuation
)
(
declare
(
dynamic-extent
continuation
)))
(
defgeneric
invoke-with-sheet-medium
(
sheet
continuation
))
(
defmacro
with-sheet-medium
((
medium
sheet
)
&body
body
)
`
(
flet
((
with-sheet-medium-body
(
,
medium
)
,@
body
))
(
declare
(
dynamic-extent
#'
with-sheet-medium-body
))
(
invoke-with-sheet-medium
,
sheet
#'
with-sheet-medium-body
)))
(
defgeneric
invoke-with-sheet-medium-bound
(
sheet
medium
continuation
)
(
declare
(
dynamic-extent
continuation
)))
(
defgeneric
invoke-with-sheet-medium-bound
(
sheet
medium
continuation
))
(
defmacro
with-sheet-medium-bound
((
sheet
medium
)
&body
body
)
`
(
flet
((
with-sheet-medium-bound-body
()
,@
body
))
...
...
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