projects
/
elisp
/
apel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2414bf
)
(byte-code-function-p): Check if the CDR of OBJECT is a cons cell.
author
czkmt
<czkmt>
Sun, 23 Jan 2000 09:16:13 +0000
(09:16 +0000)
committer
czkmt
<czkmt>
Sun, 23 Jan 2000 09:16:13 +0000
(09:16 +0000)
poe-18.el
patch
|
blob
|
history
diff --git
a/poe-18.el
b/poe-18.el
index
edba3e0
..
d765d83
100644
(file)
--- a/
poe-18.el
+++ b/
poe-18.el
@@
-58,7
+58,7
@@
Associates the function with the current load file, if any."
(defun byte-code-function-p (object)
"Return t if OBJECT is a byte-compiled function object."
- (and (consp object)
+ (and (consp object) (consp (cdr object))
(let ((rest (cdr (cdr object)))
elt)
(if (stringp (car rest))