# HG changeset patch # User Richard M. Stallman # Date 895107434 0 # Node ID 463eb85cd3e577dcb9b408a1b4c309460c590133 # Parent d313bff62b93b4ce1dd11f268804f828add1fd0a (disassemble-1): Reference bytecode string as unibyte. diff -r d313bff62b93 -r 463eb85cd3e5 lisp/emacs-lisp/disass.el --- a/lisp/emacs-lisp/disass.el Wed May 13 15:12:18 1998 +0000 +++ b/lisp/emacs-lisp/disass.el Thu May 14 00:57:14 1998 +0000 @@ -171,7 +171,7 @@ 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)