diff options
| author | Eli Zaretskii | 2019-12-14 13:56:29 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-12-14 13:56:29 +0200 |
| commit | 7ebbec03eccd8d3470a6f04c87fb228e88f8f14f (patch) | |
| tree | c49f4e89fa9c166f674a80df4f1c5d92cb8fd484 | |
| parent | 82a315b9e733deffe8802990c6312d02a576040c (diff) | |
| download | emacs-7ebbec03eccd8d3470a6f04c87fb228e88f8f14f.tar.gz emacs-7ebbec03eccd8d3470a6f04c87fb228e88f8f14f.zip | |
Fix cross-references in ELisp manual
* doc/lispref/commands.texi (Misc Events, Special Events): Fix
cross-references. (Bug#38520)
| -rw-r--r-- | doc/lispref/commands.texi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi index 032f005e9c4..c5427b172e3 100644 --- a/doc/lispref/commands.texi +++ b/doc/lispref/commands.texi | |||
| @@ -1788,9 +1788,10 @@ additional data because signals do not carry additional information. | |||
| 1788 | They can be useful for debugging (@pxref{Error Debugging}). | 1788 | They can be useful for debugging (@pxref{Error Debugging}). |
| 1789 | 1789 | ||
| 1790 | To catch a user signal, bind the corresponding event to an interactive | 1790 | To catch a user signal, bind the corresponding event to an interactive |
| 1791 | command in the @code{special-event-map} (@pxref{Active Keymaps}). | 1791 | command in the @code{special-event-map} (@pxref{Controlling Active Maps}). |
| 1792 | The command is called with no arguments, and the specific signal event is | 1792 | The command is called with no arguments, and the specific signal event is |
| 1793 | available in @code{last-input-event}. For example: | 1793 | available in @code{last-input-event} (@pxref{Event Input Misc}. For |
| 1794 | example: | ||
| 1794 | 1795 | ||
| 1795 | @smallexample | 1796 | @smallexample |
| 1796 | (defun sigusr-handler () | 1797 | (defun sigusr-handler () |
| @@ -3018,7 +3019,7 @@ definition to find the actual event. | |||
| 3018 | user signals like @code{sigusr1} are normally handled in this way. | 3019 | user signals like @code{sigusr1} are normally handled in this way. |
| 3019 | The keymap which defines how to handle special events---and which | 3020 | The keymap which defines how to handle special events---and which |
| 3020 | events are special---is in the variable @code{special-event-map} | 3021 | events are special---is in the variable @code{special-event-map} |
| 3021 | (@pxref{Active Keymaps}). | 3022 | (@pxref{Controlling Active Maps}). |
| 3022 | 3023 | ||
| 3023 | @node Waiting | 3024 | @node Waiting |
| 3024 | @section Waiting for Elapsed Time or Input | 3025 | @section Waiting for Elapsed Time or Input |