emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog subr.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp ChangeLog subr.el
Date: Tue, 14 Jul 2009 07:45:59 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/07/14 07:45:59

Modified files:
        lisp           : ChangeLog subr.el 

Log message:
        (def-edebug-spec): Doc fix.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15802&r2=1.15803
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/subr.el?cvsroot=emacs&r1=1.640&r2=1.641

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15802
retrieving revision 1.15803
diff -u -b -r1.15802 -r1.15803
--- ChangeLog   14 Jul 2009 01:17:49 -0000      1.15802
+++ ChangeLog   14 Jul 2009 07:45:56 -0000      1.15803
@@ -1,3 +1,7 @@
+2009-07-14  Glenn Morris  <address@hidden>
+
+       * subr.el (def-edebug-spec): Doc fix.
+
 2009-07-14  Kenichi Handa  <address@hidden>
 
        * international/characters.el: Fix setting of category ?C.

Index: subr.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/subr.el,v
retrieving revision 1.640
retrieving revision 1.641
diff -u -b -r1.640 -r1.641
--- subr.el     6 Jul 2009 00:51:29 -0000       1.640
+++ subr.el     14 Jul 2009 07:45:59 -0000      1.641
@@ -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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]