# HG changeset patch # User Glenn Morris # Date 1247557556 0 # Node ID dbafc1b9107dd85c4f32e396dd9dfb02c6c0e9b3 # Parent 9e4794df0d0e7f63b703d4f92dd92a1c75877a3b (def-edebug-spec): Doc fix. diff -r 9e4794df0d0e -r dbafc1b9107d lisp/ChangeLog --- a/lisp/ChangeLog Tue Jul 14 01:17:49 2009 +0000 +++ b/lisp/ChangeLog Tue Jul 14 07:45:56 2009 +0000 @@ -1,3 +1,7 @@ +2009-07-14 Glenn Morris + + * subr.el (def-edebug-spec): Doc fix. + 2009-07-14 Kenichi Handa * international/characters.el: Fix setting of category ?C. diff -r 9e4794df0d0e -r dbafc1b9107d lisp/subr.el --- a/lisp/subr.el Tue Jul 14 01:17:49 2009 +0000 +++ b/lisp/subr.el Tue Jul 14 07:45:56 2009 +0000 @@ -91,8 +91,11 @@ (defmacro def-edebug-spec (symbol spec) "Set the `edebug-form-spec' property of SYMBOL according to SPEC. -Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol -\(naming a function), or a list." +Both SYMBOL and SPEC are unevaluated. The SPEC can be: +0 (instrument no arguments); t (instrument all arguments); +a symbol (naming a function with an Edebug specification); or a list. +The elements of the list describe the argument types; see +\(info \"(elisp)Specification List\") for details." `(put (quote ,symbol) 'edebug-form-spec (quote ,spec))) (defmacro lambda (&rest cdr)