Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8dff74b7
Commit
8dff74b7
authored
Sep 27, 1993
by
Richard M. Stallman
Browse files
(disassemble-internal): Allow a call to byte-code as argument.
parent
d89a4a47
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
lisp/emacs-lisp/disass.el
lisp/emacs-lisp/disass.el
+2
-0
No files found.
lisp/emacs-lisp/disass.el
View file @
8dff74b7
...
...
@@ -86,6 +86,8 @@ redefine OBJECT if it is a symbol."
(
if
(
eq
(
car-safe
obj
)
'macro
)
;handle macros
(
setq
macro
t
obj
(
cdr
obj
)))
(
if
(
and
(
listp
obj
)
(
eq
(
car
obj
)
'byte-code
))
(
setq
obj
(
list
'lambda
nil
obj
)))
(
if
(
and
(
listp
obj
)
(
not
(
eq
(
car
obj
)
'lambda
)))
(
error
"not a function"
))
(
if
(
consp
obj
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment