aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/ChangeLog.trunk5
-rw-r--r--doc/lispref/commands.texi5
2 files changed, 8 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog.trunk b/doc/lispref/ChangeLog.trunk
index c705aae4934..1eb3cfa2556 100644
--- a/doc/lispref/ChangeLog.trunk
+++ b/doc/lispref/ChangeLog.trunk
@@ -1,3 +1,8 @@
12011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * commands.texi (Command Overview): post-command-hook is not reset to
4 nil any more.
5
12011-03-19 Stefan Monnier <monnier@iro.umontreal.ca> 62011-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * strings.texi (String Conversion): Don't mention 8 * strings.texi (String Conversion): Don't mention
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi
index 4f8d554a68b..eb42ddb11a4 100644
--- a/doc/lispref/commands.texi
+++ b/doc/lispref/commands.texi
@@ -91,8 +91,9 @@ and also when the command loop is first entered. At that time,
91 91
92 Quitting is suppressed while running @code{pre-command-hook} and 92 Quitting is suppressed while running @code{pre-command-hook} and
93@code{post-command-hook}. If an error happens while executing one of 93@code{post-command-hook}. If an error happens while executing one of
94these hooks, it terminates execution of the hook, and clears the hook 94these hooks, it does not terminate execution of the hook; instead
95variable to @code{nil} so as to prevent an infinite loop of errors. 95the error is silenced and the function in which the error occurred
96is removed from the hook.
96 97
97 A request coming into the Emacs server (@pxref{Emacs Server,,, 98 A request coming into the Emacs server (@pxref{Emacs Server,,,
98emacs, The GNU Emacs Manual}) runs these two hooks just as a keyboard 99emacs, The GNU Emacs Manual}) runs these two hooks just as a keyboard