aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2019-01-25 11:14:32 +0200
committerEli Zaretskii2019-01-25 11:14:32 +0200
commit96e386e60de1d4ae9d702fc376ef7a9279a6aa66 (patch)
tree5f4f40eaab18a307a224877dbc767795f9489d55
parent27fffb2701c38090916e077d28a4a6b9e2bc09d2 (diff)
downloademacs-96e386e60de1d4ae9d702fc376ef7a9279a6aa66.tar.gz
emacs-96e386e60de1d4ae9d702fc376ef7a9279a6aa66.zip
; Fix recent changes in ELisp manual
* doc/lispref/commands.texi (Using Interactive): Add a period at the end of a sentence. (Event Input Misc): Fix typo and leave 2 spaces between sentences.
-rw-r--r--doc/lispref/commands.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi
index fb5a827ad12..bf667341575 100644
--- a/doc/lispref/commands.texi
+++ b/doc/lispref/commands.texi
@@ -256,7 +256,7 @@ It may be a Lisp expression that is not a string; then it should be a
256form that is evaluated to get a list of arguments to pass to the 256form that is evaluated to get a list of arguments to pass to the
257command. Usually this form will call various functions to read input 257command. Usually this form will call various functions to read input
258from the user, most often through the minibuffer (@pxref{Minibuffers}) 258from the user, most often through the minibuffer (@pxref{Minibuffers})
259or directly from the keyboard (@pxref{Reading Input}) 259or directly from the keyboard (@pxref{Reading Input}).
260 260
261Providing point or the mark as an argument value is also common, but 261Providing point or the mark as an argument value is also common, but
262if you do this @emph{and} read input (whether using the minibuffer or 262if you do this @emph{and} read input (whether using the minibuffer or
@@ -2922,12 +2922,12 @@ this expression) remains the value of @code{last-command-event}.
2922 2922
2923@defvar input-event-functions 2923@defvar input-event-functions
2924This variable holds a list of functions to call after Emacs reads an 2924This variable holds a list of functions to call after Emacs reads an
2925event, but before any commands are run. Each function recieves a 2925event, but before any commands are run. Each function receives a
2926single argument: the event that has been read. 2926single argument: the event that has been read.
2927 2927
2928There are normally easier hooks to use than this; in particular 2928There are normally easier hooks to use than this; in particular
2929@var{pre-command-hook} is run immediately before any command resulting 2929@var{pre-command-hook} is run immediately before any command resulting
2930from an event. However, not all events result in a command, including 2930from an event. However, not all events result in a command, including
2931many mouse events and some keyboard events when an input-method is 2931many mouse events and some keyboard events when an input-method is
2932active (@pxref{Reading Input}). 2932active (@pxref{Reading Input}).
2933@end defvar 2933@end defvar