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
95efb8e7
Commit
95efb8e7
authored
33 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Fixed CMU parameterization of *pcl-directory* to be more consistent with
the distribution.
parent
bde3ab51
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
pcl/defsys.lisp
+8
-3
8 additions, 3 deletions
pcl/defsys.lisp
with
8 additions
and
3 deletions
pcl/defsys.lisp
+
8
−
3
View file @
95efb8e7
...
...
@@ -408,8 +408,7 @@ and load your system with:
(
let
((
*system-directory*
(
funcall
(
car
system
)))
(
modules
(
cadr
system
))
(
transformations
()))
(
labels
(
#+
nil
;; This isn't used?
(
load-source
(
name
pathname
)
(
labels
((
load-source
(
name
pathname
)
(
format
t
"~&Loading source of ~A..."
name
)
(
or
print-only
(
load
pathname
)))
(
load-binary
(
name
pathname
)
...
...
@@ -560,6 +559,7 @@ and load your system with:
(
flet
((
bad-time
()
(
when
errorp
(
error
"LOAD-TRUENAME called but a file isn't being loaded."
))))
#+
CMU
(
pathname
"pcl:"
)
#+
Lispm
(
or
sys:fdefine-file-pathname
(
bad-time
))
#+
excl
excl::*source-pathname*
#+
Xerox
(
pathname
(
or
(
il:fullname
*standard-input*
)
(
bad-time
)))
...
...
@@ -572,7 +572,12 @@ and load your system with:
#+
LUCID
(
or
lucid::*source-pathname*
(
bad-time
))
#-
(
or
Lispm
excl
Xerox
(
and
dec
vax
common
)
LUCID
)
nil
))
(
defvar
*pcl-directory*
(
pathname
"pcl:"
))
#-
Symbolics
(
defvar
*pcl-directory*
(
or
(
load-truename
t
)
(
error
"Because load-truename is not implemented in this port~%~
of PCL, you must manually edit the definition of the~%~
variable *pcl-directory* in the file defsys.lisp."
)))
#+
Genera
(
defvar
*pcl-directory*
...
...
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