diff lisp/subr.el @ 103884:dbafc1b9107d

(def-edebug-spec): Doc fix.
author Glenn Morris <rgm@gnu.org>
date Tue, 14 Jul 2009 07:45:56 +0000
parents 4faf5698814a
children 340cbf291f8a
line wrap: on
line diff
--- 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)