]> git.eshelyaron.com Git - emacs.git/commitdiff
(edebug-functionp): Recognize compiled functions.
authorRichard M. Stallman <rms@gnu.org>
Tue, 23 Nov 1993 08:41:03 +0000 (08:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 23 Nov 1993 08:41:03 +0000 (08:41 +0000)
lisp/emacs-lisp/edebug.el

index 9061751082d01c92adf3eaafae038d64300027c8..0dcb21780e873f1a8b2efad8c588f486a5a38df7 100644 (file)
@@ -327,6 +327,7 @@ Assumes Emacs Lisp syntax is active."
   (while (and (symbolp object) (fboundp object))
     (setq object (symbol-function object)))
   (if (or (subrp object)
+         (byte-code-function-p object)
          (and (listp object)
               (eq (car object) 'lambda)
               (listp (car (cdr object)))))