diff options
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog.trunk | 5 | ||||
| -rw-r--r-- | doc/lispref/commands.texi | 5 |
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 @@ | |||
| 1 | 2011-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 | |||
| 1 | 2011-03-19 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2011-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 |
| 94 | these hooks, it terminates execution of the hook, and clears the hook | 94 | these hooks, it does not terminate execution of the hook; instead |
| 95 | variable to @code{nil} so as to prevent an infinite loop of errors. | 95 | the error is silenced and the function in which the error occurred |
| 96 | is 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,,, |
| 98 | emacs, The GNU Emacs Manual}) runs these two hooks just as a keyboard | 99 | emacs, The GNU Emacs Manual}) runs these two hooks just as a keyboard |