summaryrefslogtreecommitdiff
path: root/lispref
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1999-08-10 16:52:16 +0000
committerKarl Heuer <kwzh@gnu.org>1999-08-10 16:52:16 +0000
commitbbf6f18c1ec1b7fae1fc95114591ae0a3e425c58 (patch)
tree8fa0ec72ecfc4a49e65163b056757710f6f6086a /lispref
parentce288cb6819ef8be713674ffb87c7b65020bd90d (diff)
downloademacs-bbf6f18c1ec1b7fae1fc95114591ae0a3e425c58.tar.gz
*** empty log message ***
Diffstat (limited to 'lispref')
-rw-r--r--lispref/advice.texi6
1 files changed, 6 insertions, 0 deletions
diff --git a/lispref/advice.texi b/lispref/advice.texi
index 24ddb628941..1d3d4e0e46f 100644
--- a/lispref/advice.texi
+++ b/lispref/advice.texi
@@ -268,6 +268,12 @@ the original function definition. This provides a way to override the
original definition completely. (It also overrides lower-positioned
pieces of around-advice).
+If the around-advice uses @code{ad-do-it} more than once, the original
+definition is run at each place. In this way, around-advice can execute
+the original definition (and lower-positioned pieces of around-advice)
+several times. Another way to do that is by using @code{ad-do-it}
+inside of a loop.
+
@node Computed Advice
@section Computed Advice