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
2376d277
Commit
2376d277
authored
21 years ago
by
gerd
Browse files
Options
Downloads
Patches
Plain Diff
boot11.lisp
parent
e10b73e5
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
bootfiles/18e/boot11.lisp
+41
-0
41 additions, 0 deletions
bootfiles/18e/boot11.lisp
with
41 additions
and
0 deletions
bootfiles/18e/boot11.lisp
0 → 100644
+
41
−
0
View file @
2376d277
;;;
;;; Boot file for moving PCL's declaration identifiers SLOTS,
;;; AUTO-COMPILE, NOT-AUTO-COMPILE to EXT. Use this file
;;; as target:bootstrap.lisp using Pierre Mai's build scripts.
;;;
(
in-package
:user
)
(
setq
cl::*enable-package-locked-errors*
nil
)
(
defun
unintern-in-all-packages
(
name
)
(
dolist
(
pkg
(
list-all-packages
))
(
multiple-value-bind
(
symbol
status
)
(
find-symbol
name
pkg
)
(
when
symbol
(
unintern
symbol
pkg
)))))
(
unintern-in-all-packages
"SLOTS"
)
(
unintern-in-all-packages
"AUTO-COMPILE"
)
(
unintern-in-all-packages
"NOT-AUTO-COMPILE"
)
(
in-package
:ext
)
(
export
'
(
slots
auto-compile
not-auto-compile
))
(
in-package
:kernel
)
(
defun
compare-slots
(
old
new
)
(
values
nil
nil
nil
))
(
in-package
:conditions
)
(
defstruct
(
condition-class
(
:include
slot-class
))
(
slots
nil
:type
list
)
(
class-slots
nil
:type
list
)
(
report
nil
:type
(
or
function
null
))
(
default-initargs
()
:type
list
)
(
cpl
()
:type
list
)
(
hairy-slots
nil
:type
list
))
;;; end of file
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