diff options
Diffstat (limited to 'lisp/emacs-lisp/disass.el')
-rw-r--r-- | lisp/emacs-lisp/disass.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/disass.el b/lisp/emacs-lisp/disass.el index 3fc22247fa6..2faad60865f 100644 --- a/lisp/emacs-lisp/disass.el +++ b/lisp/emacs-lisp/disass.el @@ -36,6 +36,7 @@ ;;; Code: (require 'macroexp) +(require 'cl-lib) ;; The variable byte-code-vector is defined by the new bytecomp.el. ;; The function byte-decompile-lapcode is defined in byte-opt.el. @@ -168,7 +169,8 @@ OBJ should be a call to BYTE-CODE generated by the byte compiler." (fetch-bytecode obj) (setq bytes (aref obj 1) constvec (aref obj 2))) - (let ((lap (byte-decompile-bytecode (string-as-unibyte bytes) constvec)) + (cl-assert (not (multibyte-string-p bytes))) + (let ((lap (byte-decompile-bytecode bytes constvec)) op arg opname pc-value) (let ((tagno 0) tmp |