diff options
| author | Xue Fuqiao | 2014-02-28 18:31:26 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2014-02-28 18:31:26 +0800 |
| commit | d63ae2e490808ea3b9615a9cc1c9a329914f3466 (patch) | |
| tree | b84e0068662083646e321ca7e856de920856c47c /doc | |
| parent | 65fa10162106dff75e953f9f7675dfe73c92452d (diff) | |
| download | emacs-d63ae2e490808ea3b9615a9cc1c9a329914f3466.tar.gz emacs-d63ae2e490808ea3b9615a9cc1c9a329914f3466.zip | |
Continuation of previous change.
* doc/lispref/functions.texi (Advising Named Functions): Tweak markup.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/lispref/functions.texi | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 40a07339b2f..e96ea3fbbc3 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | 2014-02-28 Xue Fuqiao <xfq@gnu.org> | 1 | 2014-02-28 Xue Fuqiao <xfq@gnu.org> |
| 2 | 2 | ||
| 3 | * functions.texi (Advising Functions): Tweak markup. | 3 | * functions.texi (Advising Functions): |
| 4 | (Advising Named Functions): Tweak markup. | ||
| 4 | 5 | ||
| 5 | * display.texi (Defining Faces): Doc fix for `face-spec-set'. | 6 | * display.texi (Defining Faces): Doc fix for `face-spec-set'. |
| 6 | 7 | ||
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index cd7131564ea..b85ed6e715c 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -1344,9 +1344,9 @@ and its properties. | |||
| 1344 | @subsection Advising Named Functions | 1344 | @subsection Advising Named Functions |
| 1345 | 1345 | ||
| 1346 | A common use of advice is for named functions and macros. | 1346 | A common use of advice is for named functions and macros. |
| 1347 | Since @var{add-function} does not know how to deal with macros and autoloaded | 1347 | Since @code{add-function} does not know how to deal with macros and |
| 1348 | functions, Emacs provides a separate set of functions to manipulate pieces of | 1348 | autoloaded functions, Emacs provides a separate set of functions to |
| 1349 | advice applied to named functions. | 1349 | manipulate pieces of advice applied to named functions. |
| 1350 | 1350 | ||
| 1351 | Advice can be useful for altering the behavior of an existing | 1351 | Advice can be useful for altering the behavior of an existing |
| 1352 | function without having to redefine the whole function. However, it | 1352 | function without having to redefine the whole function. However, it |