summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-08-11 11:05:51 +0000
committerRichard M. Stallman <rms@gnu.org>1998-08-11 11:05:51 +0000
commitd18a808f42266d6a1873373e6fef9ca6e74a5226 (patch)
treeb09d5bc50f3c38f7d7cb2cf8055fd3ae499f13de /lisp/emacs-lisp
parent326b283b18e793033004fa8c54f63599e1825e2c (diff)
downloademacs-d18a808f42266d6a1873373e6fef9ca6e74a5226.tar.gz
emacs-d18a808f42266d6a1873373e6fef9ca6e74a5226.tar.bz2
emacs-d18a808f42266d6a1873373e6fef9ca6e74a5226.zip
(disassemble-1): Move the call to
string-as-unibyte outside of the if statement.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/disass.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/disass.el b/lisp/emacs-lisp/disass.el
index 8b010c45e4c..bf9e9d04ccc 100644
--- a/lisp/emacs-lisp/disass.el
+++ b/lisp/emacs-lisp/disass.el
@@ -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