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
26597a46
Commit
26597a46
authored
Jun 25, 1991
by
wlott
Browse files
Check to make sure TN is not :MORE *before* checking to see if it's offset
is non-NIL.
parent
dcb429dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/pack.lisp
View file @
26597a46
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/pack.lisp,v 1.3
6
1991/0
4/09 19:36:38 ram
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/pack.lisp,v 1.3
7
1991/0
6/25 19:41:37 wlott
Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -1468,7 +1468,7 @@
((
minusp
i
))
(
declare
(
fixnum
i
))
(
let
((
tn
(
svref
ltns
i
)))
(
unless
(
or
(
null
tn
)
(
tn-offset
tn
)
(
eq
tn
:more
))
(
unless
(
or
(
null
tn
)
(
eq
tn
:more
)
(
tn-offset
tn
))
(
pack-tn
tn
nil
))))))
;;
;; Pack any leftover normal TNs. This is to deal with :MORE TNs, which
...
...
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