aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXue Fuqiao2014-02-28 18:06:04 +0800
committerXue Fuqiao2014-02-28 18:06:04 +0800
commit65fa10162106dff75e953f9f7675dfe73c92452d (patch)
tree92b341088fbe51074e45d8a218f9dade7fa170ab
parent9dda75adcd4e7e3961349e52a9e82c66dda968d6 (diff)
downloademacs-65fa10162106dff75e953f9f7675dfe73c92452d.tar.gz
emacs-65fa10162106dff75e953f9f7675dfe73c92452d.zip
* doc/lispref/functions.texi (Advising Functions): Tweak markup.
-rw-r--r--doc/lispref/ChangeLog2
-rw-r--r--doc/lispref/functions.texi6
2 files changed, 5 insertions, 3 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index b7148b92186..40a07339b2f 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,5 +1,7 @@
12014-02-28 Xue Fuqiao <xfq@gnu.org> 12014-02-28 Xue Fuqiao <xfq@gnu.org>
2 2
3 * functions.texi (Advising Functions): Tweak markup.
4
3 * display.texi (Defining Faces): Doc fix for `face-spec-set'. 5 * display.texi (Defining Faces): Doc fix for `face-spec-set'.
4 6
5 * elisp.texi (Top): 7 * elisp.texi (Top):
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi
index b38eab2649a..cd7131564ea 100644
--- a/doc/lispref/functions.texi
+++ b/doc/lispref/functions.texi
@@ -1170,9 +1170,9 @@ there are many different ways to do it. The added function is also called an
1170@emph{advice}. 1170@emph{advice}.
1171 1171
1172The function cell of a symbol can be manipulated similarly, but since it can 1172The function cell of a symbol can be manipulated similarly, but since it can
1173contain other things than a plain function, you have to use @var{advice-add} 1173contain other things than a plain function, you have to use @code{advice-add}
1174and @var{advice-remove} instead, which 1174and @code{advice-remove} instead, which
1175@c use @var{add-function} and @var{remove-function} internally, but 1175@c use @code{add-function} and @code{remove-function} internally, but
1176know how to handle cases such as when the function cell holds a macro rather 1176know how to handle cases such as when the function cell holds a macro rather
1177than function, or when the function is autoloaded so the advice's activation 1177than function, or when the function is autoloaded so the advice's activation
1178needs to be postponed. 1178needs to be postponed.