]> git.eshelyaron.com Git - emacs.git/commitdiff
(debug-on-entry-1): If function body is empty, add nil as body form.
authorRichard M. Stallman <rms@gnu.org>
Sun, 27 Feb 2005 09:57:51 +0000 (09:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 27 Feb 2005 09:57:51 +0000 (09:57 +0000)
lisp/emacs-lisp/debug.el

index 1a6ed5845485a9b330268a03a5a3c0fe792d665c..58fb3b4a1b88e717f7a410a0ec3fcdf0df504edc 100644 (file)
@@ -704,6 +704,10 @@ If argument is nil or an empty string, cancel for all functions."
        ;; Skip the interactive form.
        (if (eq 'interactive (car-safe (car tail))) (setq tail (cdr tail)))
        (unless (eq flag (equal (car tail) '(debug 'debug)))
+         ;; If the function has no body, add nil as a body element.
+         (when (null tail)
+           (setq tail (list nil))
+           (nconc defn tail))
          ;; Add/remove debug statement as needed.
          (if (not flag)
              (progn (setcar tail (cadr tail))