diff options
| author | Eli Zaretskii | 2019-01-25 11:14:32 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-01-25 11:14:32 +0200 |
| commit | 96e386e60de1d4ae9d702fc376ef7a9279a6aa66 (patch) | |
| tree | 5f4f40eaab18a307a224877dbc767795f9489d55 | |
| parent | 27fffb2701c38090916e077d28a4a6b9e2bc09d2 (diff) | |
| download | emacs-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.texi | 6 |
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 | |||
| 256 | form that is evaluated to get a list of arguments to pass to the | 256 | form that is evaluated to get a list of arguments to pass to the |
| 257 | command. Usually this form will call various functions to read input | 257 | command. Usually this form will call various functions to read input |
| 258 | from the user, most often through the minibuffer (@pxref{Minibuffers}) | 258 | from the user, most often through the minibuffer (@pxref{Minibuffers}) |
| 259 | or directly from the keyboard (@pxref{Reading Input}) | 259 | or directly from the keyboard (@pxref{Reading Input}). |
| 260 | 260 | ||
| 261 | Providing point or the mark as an argument value is also common, but | 261 | Providing point or the mark as an argument value is also common, but |
| 262 | if you do this @emph{and} read input (whether using the minibuffer or | 262 | if 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 |
| 2924 | This variable holds a list of functions to call after Emacs reads an | 2924 | This variable holds a list of functions to call after Emacs reads an |
| 2925 | event, but before any commands are run. Each function recieves a | 2925 | event, but before any commands are run. Each function receives a |
| 2926 | single argument: the event that has been read. | 2926 | single argument: the event that has been read. |
| 2927 | 2927 | ||
| 2928 | There are normally easier hooks to use than this; in particular | 2928 | There 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 |
| 2930 | from an event. However, not all events result in a command, including | 2930 | from an event. However, not all events result in a command, including |
| 2931 | many mouse events and some keyboard events when an input-method is | 2931 | many mouse events and some keyboard events when an input-method is |
| 2932 | active (@pxref{Reading Input}). | 2932 | active (@pxref{Reading Input}). |
| 2933 | @end defvar | 2933 | @end defvar |