mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
(disassemble-internal): Graceful error if compile failed.
This commit is contained in:
parent
299585eeb6
commit
c757fb07fd
@ -104,8 +104,9 @@ redefine OBJECT if it is a symbol."
|
||||
(setq obj (cdr obj)) ;throw lambda away
|
||||
(setq args (car obj)) ;save arg list
|
||||
(setq obj (cdr obj)))
|
||||
(t
|
||||
(setq args (aref obj 0))))
|
||||
((byte-code-function-p obj)
|
||||
(setq args (aref obj 0)))
|
||||
(t (error "Compilation failed")))
|
||||
(if (zerop indent) ; not a nested function
|
||||
(progn
|
||||
(indent-to indent)
|
||||
|
Loading…
Reference in New Issue
Block a user