diff options
| author | Paul Eggert | 2011-11-24 23:14:48 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-11-24 23:14:48 -0800 |
| commit | e4920bc99dfcee02c3bb83b46a761b0893f76626 (patch) | |
| tree | a6165f7a6c45f0b4924bad97b21ab179d3e7707e /lisp/gnus | |
| parent | fa4fdb5ca559f8aae4137f8d3b974c14c760360d (diff) | |
| download | emacs-e4920bc99dfcee02c3bb83b46a761b0893f76626.tar.gz emacs-e4920bc99dfcee02c3bb83b46a761b0893f76626.zip | |
Spelling fixes.
Diffstat (limited to 'lisp/gnus')
| -rw-r--r-- | lisp/gnus/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/gnus/gmm-utils.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/gnus-group.el | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-topic.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/mm-decode.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/rfc2047.el | 4 | ||||
| -rw-r--r-- | lisp/gnus/starttls.el | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index eed5f921c57..de5f5e0b7c4 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -2778,7 +2778,7 @@ | |||
| 2778 | 2011-01-28 Lars Ingebrigtsen <larsi@gnus.org> | 2778 | 2011-01-28 Lars Ingebrigtsen <larsi@gnus.org> |
| 2779 | 2779 | ||
| 2780 | * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active | 2780 | * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active |
| 2781 | data if the group is unactivated. | 2781 | data if the group is deactivated. |
| 2782 | 2782 | ||
| 2783 | 2011-01-28 Julien Danjou <julien@danjou.info> | 2783 | 2011-01-28 Julien Danjou <julien@danjou.info> |
| 2784 | 2784 | ||
diff --git a/lisp/gnus/gmm-utils.el b/lisp/gnus/gmm-utils.el index f913ddb5378..3ee72bc5fc6 100644 --- a/lisp/gnus/gmm-utils.el +++ b/lisp/gnus/gmm-utils.el | |||
| @@ -217,7 +217,7 @@ This is a copy of the `lazy' widget in Emacs 22.1 provided for compatibility." | |||
| 217 | 'static-color 'pseudo-color))))) | 217 | 'static-color 'pseudo-color))))) |
| 218 | 'gnome | 218 | 'gnome |
| 219 | 'retro) | 219 | 'retro) |
| 220 | "Prefered tool bar style." | 220 | "Preferred tool bar style." |
| 221 | :type '(choice (const :tag "GNOME style" gnome) | 221 | :type '(choice (const :tag "GNOME style" gnome) |
| 222 | (const :tag "Retro look" retro)) | 222 | (const :tag "Retro look" retro)) |
| 223 | :group 'gmm) | 223 | :group 'gmm) |
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index 9d358969062..02c37f22774 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el | |||
| @@ -1354,9 +1354,9 @@ if it is a string, only list groups matching REGEXP." | |||
| 1354 | (predicate t) ; We list all groups? | 1354 | (predicate t) ; We list all groups? |
| 1355 | (t | 1355 | (t |
| 1356 | (or | 1356 | (or |
| 1357 | (if (eq unread t) ; Unactivated? | 1357 | (if (eq unread t) ; Deactivated? |
| 1358 | gnus-group-list-inactive-groups | 1358 | gnus-group-list-inactive-groups |
| 1359 | ; We list unactivated | 1359 | ; We list inactive |
| 1360 | (and (numberp unread) (> unread 0))) | 1360 | (and (numberp unread) (> unread 0))) |
| 1361 | ; We list groups with unread articles | 1361 | ; We list groups with unread articles |
| 1362 | (and gnus-list-groups-with-ticked-articles | 1362 | (and gnus-list-groups-with-ticked-articles |
diff --git a/lisp/gnus/gnus-topic.el b/lisp/gnus/gnus-topic.el index 17af1a38333..87ca27adcf4 100644 --- a/lisp/gnus/gnus-topic.el +++ b/lisp/gnus/gnus-topic.el | |||
| @@ -582,7 +582,7 @@ articles in the topic and its subtopics." | |||
| 582 | (or gnus-topic-display-empty-topics ;We want empty topics | 582 | (or gnus-topic-display-empty-topics ;We want empty topics |
| 583 | (not (zerop unread)) ;Non-empty | 583 | (not (zerop unread)) ;Non-empty |
| 584 | tick ;Ticked articles | 584 | tick ;Ticked articles |
| 585 | (/= point-max (point-max)))) ;Unactivated groups | 585 | (/= point-max (point-max)))) ;Inactive groups |
| 586 | (gnus-extent-start-open (point)) | 586 | (gnus-extent-start-open (point)) |
| 587 | (gnus-topic-insert-topic-line | 587 | (gnus-topic-insert-topic-line |
| 588 | (car type) visiblep | 588 | (car type) visiblep |
diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el index 36c56e0921b..44e2af5b904 100644 --- a/lisp/gnus/mm-decode.el +++ b/lisp/gnus/mm-decode.el | |||
| @@ -360,7 +360,7 @@ to: | |||
| 360 | (\"text/html\" \"text/richtext\") | 360 | (\"text/html\" \"text/richtext\") |
| 361 | 361 | ||
| 362 | Adding \"image/.*\" might also be useful. Spammers use it as the | 362 | Adding \"image/.*\" might also be useful. Spammers use it as the |
| 363 | prefered part of multipart/alternative messages. See also | 363 | preferred part of multipart/alternative messages. See also |
| 364 | `gnus-buttonized-mime-types', to which adding \"multipart/alternative\" | 364 | `gnus-buttonized-mime-types', to which adding \"multipart/alternative\" |
| 365 | enables you to choose manually one of two types those mails include." | 365 | enables you to choose manually one of two types those mails include." |
| 366 | :type '(repeat regexp) ;; See `mm-preferred-alternative-precedence'. | 366 | :type '(repeat regexp) ;; See `mm-preferred-alternative-precedence'. |
diff --git a/lisp/gnus/rfc2047.el b/lisp/gnus/rfc2047.el index feed078034c..f1cb1f69e56 100644 --- a/lisp/gnus/rfc2047.el +++ b/lisp/gnus/rfc2047.el | |||
| @@ -586,7 +586,7 @@ should not change this value.") | |||
| 586 | ((>= column rfc2047-encode-max-chars) | 586 | ((>= column rfc2047-encode-max-chars) |
| 587 | (when eword | 587 | (when eword |
| 588 | (cond ((string-match "\n[ \t]+\\'" eword) | 588 | (cond ((string-match "\n[ \t]+\\'" eword) |
| 589 | ;; Reomove a superfluous empty line. | 589 | ;; Remove a superfluous empty line. |
| 590 | (setq eword (substring eword 0 (match-beginning 0)))) | 590 | (setq eword (substring eword 0 (match-beginning 0)))) |
| 591 | ((string-match "(+\\'" eword) | 591 | ((string-match "(+\\'" eword) |
| 592 | ;; Break the line before the open parenthesis. | 592 | ;; Break the line before the open parenthesis. |
| @@ -639,7 +639,7 @@ should not change this value.") | |||
| 639 | (setq crest " " | 639 | (setq crest " " |
| 640 | eword (concat eword next))) | 640 | eword (concat eword next))) |
| 641 | (when (string-match "\n[ \t]+\\'" eword) | 641 | (when (string-match "\n[ \t]+\\'" eword) |
| 642 | ;; Reomove a superfluous empty line. | 642 | ;; Remove a superfluous empty line. |
| 643 | (setq eword (substring eword 0 (match-beginning 0)))) | 643 | (setq eword (substring eword 0 (match-beginning 0)))) |
| 644 | (rfc2047-encode-1 (length crest) (substring string index) | 644 | (rfc2047-encode-1 (length crest) (substring string index) |
| 645 | cs encoder start " " tail | 645 | cs encoder start " " tail |
diff --git a/lisp/gnus/starttls.el b/lisp/gnus/starttls.el index 58dbebf4c5a..af9fd42c127 100644 --- a/lisp/gnus/starttls.el +++ b/lisp/gnus/starttls.el | |||
| @@ -35,7 +35,7 @@ | |||
| 35 | ;; and the second one is Simon Josefsson's starttls.el which uses | 35 | ;; and the second one is Simon Josefsson's starttls.el which uses |
| 36 | ;; "gnutls-cli" from GnuTLS. | 36 | ;; "gnutls-cli" from GnuTLS. |
| 37 | ;; | 37 | ;; |
| 38 | ;; If "starttls" is available, it is prefered by the code over | 38 | ;; If "starttls" is available, it is preferred by the code over |
| 39 | ;; "gnutls-cli", for backwards compatibility. Use | 39 | ;; "gnutls-cli", for backwards compatibility. Use |
| 40 | ;; `starttls-use-gnutls' to toggle between implementations if you have | 40 | ;; `starttls-use-gnutls' to toggle between implementations if you have |
| 41 | ;; both tools installed. It is recommended to use GnuTLS, though, as | 41 | ;; both tools installed. It is recommended to use GnuTLS, though, as |