diff options
| author | Paul Eggert | 2020-01-17 14:23:20 -0800 |
|---|---|---|
| committer | Paul Eggert | 2020-01-17 14:24:15 -0800 |
| commit | 2391d3f45dbff087d64c522657124ebd1467b251 (patch) | |
| tree | f3500c37d93126f61b70abfeb4cd7d07786e67b8 | |
| parent | e898442be343588c2be9638b1684856dbc898ab9 (diff) | |
| download | emacs-2391d3f45dbff087d64c522657124ebd1467b251.tar.gz emacs-2391d3f45dbff087d64c522657124ebd1467b251.zip | |
; spelling fixes
| -rw-r--r-- | doc/emacs/anti.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/internals.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/modes.texi | 2 | ||||
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/rx.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/gnus.el | 2 | ||||
| -rw-r--r-- | lisp/mail/rmailsum.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/doc/emacs/anti.texi b/doc/emacs/anti.texi index 1398a00b2b3..d1e67e66560 100644 --- a/doc/emacs/anti.texi +++ b/doc/emacs/anti.texi | |||
| @@ -93,7 +93,7 @@ The optional display of the fill-column indicator is no longer | |||
| 93 | supported. With the display sizes becoming smaller and smaller as you | 93 | supported. With the display sizes becoming smaller and smaller as you |
| 94 | move back in time, we feel that the display itself will always show | 94 | move back in time, we feel that the display itself will always show |
| 95 | you where to fill or wrap your text, and do this much more easily and | 95 | you where to fill or wrap your text, and do this much more easily and |
| 96 | reliably than eny such display indicator. | 96 | reliably than any such display indicator. |
| 97 | 97 | ||
| 98 | @item | 98 | @item |
| 99 | We removed the features that made visiting large files easier. Thus, | 99 | We removed the features that made visiting large files easier. Thus, |
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi index 874ecf0175f..325841d8f8a 100644 --- a/doc/lispref/internals.texi +++ b/doc/lispref/internals.texi | |||
| @@ -1411,7 +1411,7 @@ other words, if a module function wants to call Lisp functions or | |||
| 1411 | Emacs primitives, convert @code{emacs_value} objects to and from C | 1411 | Emacs primitives, convert @code{emacs_value} objects to and from C |
| 1412 | datatypes (@pxref{Module Values}), or interact with Emacs in any other | 1412 | datatypes (@pxref{Module Values}), or interact with Emacs in any other |
| 1413 | way, some call from Emacs to @code{emacs_module_init} or to a module | 1413 | way, some call from Emacs to @code{emacs_module_init} or to a module |
| 1414 | function must be in the callstack. Module function may not interact | 1414 | function must be in the call stack. Module function may not interact |
| 1415 | with Emacs while garbage collection is running; @pxref{Garbage | 1415 | with Emacs while garbage collection is running; @pxref{Garbage |
| 1416 | Collection}. They may only interact with Emacs from Lisp interpreter | 1416 | Collection}. They may only interact with Emacs from Lisp interpreter |
| 1417 | threads (including the main thread) created by Emacs; @pxref{Threads}. | 1417 | threads (including the main thread) created by Emacs; @pxref{Threads}. |
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index b52871ef70b..a8ddd45f891 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi | |||
| @@ -135,7 +135,7 @@ non-@code{nil} value, it returns that value; otherwise it returns | |||
| 135 | @node Setting Hooks | 135 | @node Setting Hooks |
| 136 | @subsection Setting Hooks | 136 | @subsection Setting Hooks |
| 137 | 137 | ||
| 138 | Here's an example that adds a funtion to a mode hook to turn | 138 | Here's an example that adds a function to a mode hook to turn |
| 139 | on Auto Fill mode when in Lisp Interaction mode: | 139 | on Auto Fill mode when in Lisp Interaction mode: |
| 140 | 140 | ||
| 141 | @example | 141 | @example |
| @@ -697,7 +697,7 @@ current and the previous or the next line, as before. | |||
| 697 | 697 | ||
| 698 | +++ | 698 | +++ |
| 699 | ** You can now change the font size with the mouse wheel. | 699 | ** You can now change the font size with the mouse wheel. |
| 700 | Scroling the mouse wheel with the Ctrl key pressed will now act the | 700 | Scrolling the mouse wheel with the Ctrl key pressed will now act the |
| 701 | same as the 'C-x C-+' and 'C-x C--' commands. | 701 | same as the 'C-x C-+' and 'C-x C--' commands. |
| 702 | 702 | ||
| 703 | 703 | ||
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el index dbce0795954..03af053c91e 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el | |||
| @@ -273,7 +273,7 @@ Return (REGEXP . PRECEDENCE)." | |||
| 273 | ;; (or (+ digit) "CHARLIE" "CHAN" (+ blank)) | 273 | ;; (or (+ digit) "CHARLIE" "CHAN" (+ blank)) |
| 274 | ;; -> (or (+ digit) (or "CHARLIE" "CHAN") (+ blank)) | 274 | ;; -> (or (+ digit) (or "CHARLIE" "CHAN") (+ blank)) |
| 275 | ;; | 275 | ;; |
| 276 | ;; - Optimise single-character alternatives better: | 276 | ;; - Optimize single-character alternatives better: |
| 277 | ;; * classes: space, alpha, ... | 277 | ;; * classes: space, alpha, ... |
| 278 | ;; * (syntax S), for some S (whitespace, word) | 278 | ;; * (syntax S), for some S (whitespace, word) |
| 279 | ;; so that (or "@" "%" digit (any "A-Z" space) (syntax word)) | 279 | ;; so that (or "@" "%" digit (any "A-Z" space) (syntax word)) |
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index f836ea60355..6df26b4af8c 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el | |||
| @@ -2821,7 +2821,7 @@ See Info node `(gnus)Formatting Variables'." | |||
| 2821 | (:constructor gnus-info-make | 2821 | (:constructor gnus-info-make |
| 2822 | (group rank read &optional marks method params)) | 2822 | (group rank read &optional marks method params)) |
| 2823 | (:constructor nil) | 2823 | (:constructor nil) |
| 2824 | ;; FIMXE: gnus-newsrc-alist contains a list of those, | 2824 | ;; FIXME: gnus-newsrc-alist contains a list of those, |
| 2825 | ;; so changing them to a real struct will take more work! | 2825 | ;; so changing them to a real struct will take more work! |
| 2826 | (:type list)) | 2826 | (:type list)) |
| 2827 | group rank read marks method params) | 2827 | group rank read marks method params) |
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index 3ae2e404ae7..cc55451902a 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el | |||
| @@ -391,7 +391,7 @@ SUBJECT is a regular expression." | |||
| 391 | (defun rmail-summary-by-senders (senders) | 391 | (defun rmail-summary-by-senders (senders) |
| 392 | "Display a summary of all messages whose \"From\" field matches SENDERS. | 392 | "Display a summary of all messages whose \"From\" field matches SENDERS. |
| 393 | SENDERS is a regular expression. The default for SENDERS matches the | 393 | SENDERS is a regular expression. The default for SENDERS matches the |
| 394 | sender of the current messsage." | 394 | sender of the current message." |
| 395 | (interactive | 395 | (interactive |
| 396 | (let* ((def (rmail-get-header "From")) | 396 | (let* ((def (rmail-get-header "From")) |
| 397 | ;; We quote the default argument, because if it contains regexp | 397 | ;; We quote the default argument, because if it contains regexp |
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index fc529a83596..a9fbd2f04cb 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -2024,7 +2024,7 @@ quit spell session exited." | |||
| 2024 | (setq ispell-filter (cdr ispell-filter)) | 2024 | (setq ispell-filter (cdr ispell-filter)) |
| 2025 | (when (and ispell-filter (listp ispell-filter)) | 2025 | (when (and ispell-filter (listp ispell-filter)) |
| 2026 | (if (> (length ispell-filter) 1) | 2026 | (if (> (length ispell-filter) 1) |
| 2027 | (error "Ispell and its processs have different character maps: %s" ispell-filter) | 2027 | (error "Ispell and its process have different character maps: %s" ispell-filter) |
| 2028 | (ispell-parse-output (car ispell-filter))))) | 2028 | (ispell-parse-output (car ispell-filter))))) |
| 2029 | 2029 | ||
| 2030 | (defun ispell-error-checking-word (word) | 2030 | (defun ispell-error-checking-word (word) |