diff options
| -rw-r--r-- | lispref/advice.texi | 6 |
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 | |||
| 268 | original definition completely. (It also overrides lower-positioned | 268 | original definition completely. (It also overrides lower-positioned |
| 269 | pieces of around-advice). | 269 | pieces of around-advice). |
| 270 | 270 | ||
| 271 | If the around-advice uses @code{ad-do-it} more than once, the original | ||
| 272 | definition is run at each place. In this way, around-advice can execute | ||
| 273 | the original definition (and lower-positioned pieces of around-advice) | ||
| 274 | several times. Another way to do that is by using @code{ad-do-it} | ||
| 275 | inside of a loop. | ||
| 276 | |||
| 271 | @node Computed Advice | 277 | @node Computed Advice |
| 272 | @section Computed Advice | 278 | @section Computed Advice |
| 273 | 279 | ||