Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d18a808f
Commit
d18a808f
authored
Aug 11, 1998
by
Richard M. Stallman
Browse files
(disassemble-1): Move the call to
string-as-unibyte outside of the if statement.
parent
326b283b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/emacs-lisp/disass.el
lisp/emacs-lisp/disass.el
+2
-2
No files found.
lisp/emacs-lisp/disass.el
View file @
d18a808f
...
...
@@ -171,9 +171,9 @@ OBJ should be a call to BYTE-CODE generated by the byte compiler."
constvec
(
car
(
cdr
(
cdr
obj
))))
;constant vector
;; If it is lazy-loaded, load it now
(
fetch-bytecode
obj
)
(
setq
bytes
(
string-as-unibyte
(
aref
obj
1
)
)
(
setq
bytes
(
aref
obj
1
)
constvec
(
aref
obj
2
)))
(
let
((
lap
(
byte-decompile-bytecode
bytes
constvec
))
(
let
((
lap
(
byte-decompile-bytecode
(
string-as-unibyte
bytes
)
constvec
))
op
arg
opname
pc-value
)
(
let
((
tagno
0
)
tmp
...
...
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