(disassemble-1): Reference bytecode string as unibyte.

This commit is contained in:
Richard M. Stallman 1998-05-14 00:57:14 +00:00
parent 360c227503
commit a56d55b703

View file

@ -171,7 +171,7 @@ 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 (aref obj 1)
(setq bytes (string-as-unibyte (aref obj 1))
constvec (aref obj 2)))
(let ((lap (byte-decompile-bytecode bytes constvec))
op arg opname pc-value)