]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdefmacro): Doc fix.
authorJohn Paul Wallington <jpw@pobox.com>
Wed, 4 Jun 2008 14:07:53 +0000 (14:07 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Wed, 4 Jun 2008 14:07:53 +0000 (14:07 +0000)
src/ChangeLog
src/eval.c

index 9509827296763f2289e5fa13822a51461794a8d4..673c3c012cadac278104b0d20d26daad1ecf8968 100644 (file)
@@ -1,3 +1,7 @@
+2008-06-04  John Paul Wallington  <jpw@pobox.com>
+
+       * eval.c (Fdefmacro): Doc fix.
+
 2008-06-04  Kenichi Handa  <handa@m17n.org>
 
        * coding.c (detect_coding): Fix handling of coding->head_ascii.
index 076ac91cb6f885c99bcd045e2059c579a5f67fed..e1e0a47666231d38bb222ecf0cec1ac3ab0eea54 100644 (file)
@@ -706,7 +706,8 @@ the list ARGS... as it appears in the expression,
 and the result should be a form to be evaluated instead of the original.
 
 DECL is a declaration, optional, which can specify how to indent
-calls to this macro and how Edebug should handle it.  It looks like this:
+calls to this macro, how Edebug should handle it, and which argument
+should be treated as documentation.  It looks like this:
   (declare SPECS...)
 The elements can look like this:
   (indent INDENT)
@@ -715,6 +716,10 @@ The elements can look like this:
   (debug DEBUG)
        Set NAME's `edebug-form-spec' property to DEBUG.  (This is
        equivalent to writing a `def-edebug-spec' for the macro.)
+
+  (doc-string ELT)
+       Set NAME's `doc-string-elt' property to ELT.
+
 usage: (defmacro NAME ARGLIST [DOCSTRING] [DECL] BODY...)  */)
      (args)
      Lisp_Object args;