Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
bbb5e527
Commit
bbb5e527
authored
Sep 23, 1992
by
ram
Browse files
Merged William's change to load-time-value to not include make-value-cell
in the name.
parent
dbfbf11f
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/main.lisp
View file @
bbb5e527
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.7
5
1992/09/23 17:0
5:30
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.7
6
1992/09/23 17:0
9:48
ram Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -1069,7 +1069,11 @@
(
defun
compile-load-time-value
(
form
&optional
(
name
(
let
((
*print-level*
2
)
(
*print-length*
3
))
(
format
nil
"Load Time Value of ~S"
form
))))
(
format
nil
"Load Time Value of ~S"
(
if
(
and
(
listp
form
)
(
eq
(
car
form
)
'make-value-cell
))
(
second
form
)
form
)))))
(
let
((
lambda
(
compile-load-time-stuff
form
name
t
)))
(
values
(
fasl-dump-load-time-value-lambda
lambda
*compile-object*
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment