From: Stefan Monnier Date: Mon, 19 Apr 2010 02:32:47 +0000 (-0400) Subject: * custom.el (defcustom): Add edebug spec. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~478 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=98923800997d9cb69d53b5c9a4160e6c2567647b;p=emacs.git * custom.el (defcustom): Add edebug spec. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8b9fef8bb08..78e2473e373 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2010-04-19 Stefan Monnier + + * custom.el (defcustom): Add edebug spec. + 2010-04-18 Juri Linkov Test for special mode-class in view-buffer instead of view-file (bug#5513). diff --git a/lisp/custom.el b/lisp/custom.el index 2484ee26f21..726f70492b3 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -304,7 +304,7 @@ _outside_ any bindings for these variables. \(`defvar' and See Info node `(elisp) Customization' in the Emacs Lisp manual for more information." - (declare (doc-string 3)) + (declare (doc-string 3) (debug (name body))) ;; It is better not to use backquote in this file, ;; because that makes a bootstrapping problem ;; if you need to recompile all the Lisp files using interpreted code.