]> git.eshelyaron.com Git - emacs.git/commitdiff
(debug-convert-byte-code): Convert the doc info to a string.
authorRichard M. Stallman <rms@gnu.org>
Fri, 27 Jan 1995 22:38:19 +0000 (22:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 27 Jan 1995 22:38:19 +0000 (22:38 +0000)
lisp/emacs-lisp/debug.el

index 94695b9c51b0488042e720e89c5407a14d433999..6e830e75197c99547f43d02400d2d929d224f389 100644 (file)
@@ -413,7 +413,10 @@ If argument is nil or an empty string, cancel for all functions."
          (if (nthcdr 5 contents)
              (setq body (cons (list 'interactive (nth 5 contents)) body)))
          (if (nth 4 contents)
-             (setq body (cons (nth 4 contents) body)))
+             ;; Use `documentation' here, to get the actual string,
+             ;; in case the compiled function has a reference
+             ;; to the .elc file.
+             (setq body (cons (documentation function) body)))
          (fset function (cons 'lambda (cons (car contents) body)))))))
 
 (defun debug-on-entry-1 (function defn flag)