aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Kastrup <[email protected]>2007-07-14 16:14:58 +0000
committerDavid Kastrup <[email protected]>2007-07-14 16:14:58 +0000
commit287a387cf53cc7e17142733660b959b34a8bfd0c (patch)
tree8aa46b9394c0cb9361a90c1bff243f19a63ce4ee
parentebc3ae141e844a7fe108b4e7d019a45c0f581429 (diff)
(defadvice): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/advice.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d4133f6fae..3a40e1fec6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2007-07-14 David Kastrup <[email protected]>
+
+ * emacs-lisp/advice.el (defadvice): Doc fix.
+
2007-07-14 Juanma Barranquero <[email protected]>
* subr.el (when, unless): Doc fix.
diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el
index 8023bc58a5..0123124b26 100644
--- a/lisp/emacs-lisp/advice.el
+++ b/lisp/emacs-lisp/advice.el
@@ -3759,7 +3759,7 @@ The syntax of `defadvice' is as follows:
\(defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
[DOCSTRING] [INTERACTIVE-FORM]
- BODY... )
+ BODY...)
FUNCTION ::= Name of the function to be advised.
CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.