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
51a45880
Commit
51a45880
authored
Nov 13, 1990
by
wlott
Browse files
Don't bother binding *info-env* in set-up-function-templates, 'cause
function-info-or-lose now does what we want.
parent
02219274
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/vmdef.lisp
View file @
51a45880
...
...
@@ -1715,11 +1715,7 @@
(
defun
set-up-function-translation
(
parse
n-template
)
(
declare
(
type
vop-parse
parse
))
(
mapcar
#'
(
lambda
(
name
)
`
(
let
((
info
(
let
((
*info-environment*
(
or
(
backend-info-environment
*target-backend*
)
*info-environment*
)))
(
function-info-or-lose
',name
))))
`
(
let
((
info
(
function-info-or-lose
',name
)))
(
setf
(
function-info-templates
info
)
(
adjoin-template
,
n-template
(
function-info-templates
info
)))
...
...
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