diff options
Diffstat (limited to 'lisp/emacs-lisp/disass.el')
-rw-r--r-- | lisp/emacs-lisp/disass.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/disass.el b/lisp/emacs-lisp/disass.el index d07581e86d4..8b010c45e4c 100644 --- a/lisp/emacs-lisp/disass.el +++ b/lisp/emacs-lisp/disass.el @@ -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) |