]> git.eshelyaron.com Git - emacs.git/commitdiff
(def-edebug-spec): Doc fix.
authorGlenn Morris <rgm@gnu.org>
Tue, 14 Jul 2009 07:45:07 +0000 (07:45 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 14 Jul 2009 07:45:07 +0000 (07:45 +0000)
lisp/ChangeLog
lisp/subr.el

index 2ce7e554f65e263a04e725bf154c8d1c338f825d..f88e4ba3588e3ffc4df700e53dc7658c354b23f0 100644 (file)
@@ -1,3 +1,7 @@
+2009-07-14  Glenn Morris  <rgm@gnu.org>
+
+       * subr.el (def-edebug-spec): Doc fix.
+
 2009-07-14  Kenichi Handa  <handa@m17n.org>
 
        * international/characters.el: Fix setting of category ?C.
index 6d81f1ccfde51421aed3023a719378233d3a158b..777202cf1eea2982aeb56a36c123dce421f47906 100644 (file)
@@ -91,8 +91,11 @@ that complains if FORM ever does return differing values."
 
 (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)