Content deleted Content added
m Update syntaxhighlight tags - remove use of deprecated <source> tags - BOT in trial - BRFA |
Ira Leviton (talk | contribs) m Fixed typos found with Wikipedia:Typo_Team/moss. |
||
Line 20:
The practical use of advice functions is generally to modify or otherwise extend the behavior of functions which cannot be easily modified or extended. The [[Emacspeak]] [[Emacs]]-addon makes extensive use of advice: it must modify thousands of existing Emacs modules and functions such that it can produce audio output for the blind corresponding to the visual presentation, but it would be infeasible to copy all of them and redefine them to produce audio output in addition to their normal outputs; so, the Emacspeak programmers define advice functions which run before and after.
Another Emacs example; suppose after one corrected a misspelled word through [[ispell]], one wanted to re-spellcheck the entire buffer. <code>ispell-word</code> offers no such functionality, even if the spellchecked word is used a thousand times. One ''could'' track down the definition of <code>ispell-word</code>, copy it into one's
<syntaxhighlight lang="elisp">
|