]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix cross-references in ELisp manual
authorEli Zaretskii <eliz@gnu.org>
Sat, 14 Dec 2019 11:56:29 +0000 (13:56 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 14 Dec 2019 11:56:29 +0000 (13:56 +0200)
* doc/lispref/commands.texi (Misc Events, Special Events): Fix
cross-references.  (Bug#38520)

doc/lispref/commands.texi

index 032f005e9c4c32b8e6bbcb80b2228ff7f20c8e83..c5427b172e39bb6972d9f332ed3eebd637c85ee3 100644 (file)
@@ -1788,9 +1788,10 @@ additional data because signals do not carry additional information.
 They can be useful for debugging (@pxref{Error Debugging}).
 
 To catch a user signal, bind the corresponding event to an interactive
-command in the @code{special-event-map} (@pxref{Active Keymaps}).
+command in the @code{special-event-map} (@pxref{Controlling Active Maps}).
 The command is called with no arguments, and the specific signal event is
-available in @code{last-input-event}.  For example:
+available in @code{last-input-event} (@pxref{Event Input Misc}.  For
+example:
 
 @smallexample
 (defun sigusr-handler ()
@@ -3018,7 +3019,7 @@ definition to find the actual event.
 user signals like @code{sigusr1} are normally handled in this way.
 The keymap which defines how to handle special events---and which
 events are special---is in the variable @code{special-event-map}
-(@pxref{Active Keymaps}).
+(@pxref{Controlling Active Maps}).
 
 @node Waiting
 @section Waiting for Elapsed Time or Input