diff options
Diffstat (limited to 'lisp')
| -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 |
4 files changed, 4 insertions, 4 deletions
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) |