diff options
| author | Miles Bader | 2004-10-07 05:53:41 +0000 |
|---|---|---|
| committer | Miles Bader | 2004-10-07 05:53:41 +0000 |
| commit | eb6a2b61401ca737487aa7770389c01c0e962cb0 (patch) | |
| tree | 9de61f0a65ba8a9ea8ebf4b74776bdbb9ee5ebec | |
| parent | 1b3d1d14a097ea57fb1558e4d2ec33a9fc1d9795 (diff) | |
| download | emacs-eb6a2b61401ca737487aa7770389c01c0e962cb0.tar.gz emacs-eb6a2b61401ca737487aa7770389c01c0e962cb0.zip | |
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-603
Merge from gnus--rel--5.10
Patches applied:
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-44
Update from CVS
| -rw-r--r-- | lisp/gnus/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/gnus/gnus-group.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/gnus-msg.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 8 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 2 |
5 files changed, 13 insertions, 7 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 0bdf47226ff..f4b77297867 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2004-10-06 Katsumi Yamaoka <yamaoka@jpl.org> | 1 | 2004-10-06 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 2 | ||
| 3 | * gnus-group.el (gnus-update-group-mark-positions): | ||
| 4 | * gnus-sum.el (gnus-update-summary-mark-positions): | ||
| 5 | * message.el (message-check-news-body-syntax): | ||
| 6 | * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead | ||
| 7 | of string-as-multibyte. | ||
| 8 | |||
| 3 | * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq. | 9 | * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq. |
| 4 | 10 | ||
| 5 | 2004-10-05 Juri Linkov <juri@jurta.org> | 11 | 2004-10-05 Juri Linkov <juri@jurta.org> |
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index abf99cbfd64..435acb1d6c2 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el | |||
| @@ -1047,7 +1047,7 @@ The following commands are available: | |||
| 1047 | (goto-char (point-min)) | 1047 | (goto-char (point-min)) |
| 1048 | (setq gnus-group-mark-positions | 1048 | (setq gnus-group-mark-positions |
| 1049 | (list (cons 'process (and (search-forward | 1049 | (list (cons 'process (and (search-forward |
| 1050 | (string-as-multibyte "\200") nil t) | 1050 | (mm-string-as-multibyte "\200") nil t) |
| 1051 | (- (point) 2)))))))) | 1051 | (- (point) 2)))))))) |
| 1052 | 1052 | ||
| 1053 | (defun gnus-mouse-pick-group (e) | 1053 | (defun gnus-mouse-pick-group (e) |
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index 77395ca5042..7dcef4b813b 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el | |||
| @@ -1534,7 +1534,7 @@ The source file has to be in the Emacs load path." | |||
| 1534 | ;; Remove any control chars - they seem to cause trouble for some | 1534 | ;; Remove any control chars - they seem to cause trouble for some |
| 1535 | ;; mailers. (Byte-compiled output from the stuff above.) | 1535 | ;; mailers. (Byte-compiled output from the stuff above.) |
| 1536 | (goto-char point) | 1536 | (goto-char point) |
| 1537 | (while (re-search-forward (string-as-multibyte | 1537 | (while (re-search-forward (mm-string-as-multibyte |
| 1538 | "[\000-\010\013-\037\200-\237]") nil t) | 1538 | "[\000-\010\013-\037\200-\237]") nil t) |
| 1539 | (replace-match (format "\\%03o" (string-to-char (match-string 0))) | 1539 | (replace-match (format "\\%03o" (string-to-char (match-string 0))) |
| 1540 | t t)))) | 1540 | t t)))) |
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 6c7c0436bc2..84de9c4e1ab 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -3233,21 +3233,21 @@ buffer that was in action when the last article was fetched." | |||
| 3233 | (goto-char (point-min)) | 3233 | (goto-char (point-min)) |
| 3234 | (setq pos (list (cons 'unread | 3234 | (setq pos (list (cons 'unread |
| 3235 | (and (search-forward | 3235 | (and (search-forward |
| 3236 | (string-as-multibyte "\200") nil t) | 3236 | (mm-string-as-multibyte "\200") nil t) |
| 3237 | (- (point) (point-min) 1))))) | 3237 | (- (point) (point-min) 1))))) |
| 3238 | (goto-char (point-min)) | 3238 | (goto-char (point-min)) |
| 3239 | (push (cons 'replied (and (search-forward | 3239 | (push (cons 'replied (and (search-forward |
| 3240 | (string-as-multibyte "\201") nil t) | 3240 | (mm-string-as-multibyte "\201") nil t) |
| 3241 | (- (point) (point-min) 1))) | 3241 | (- (point) (point-min) 1))) |
| 3242 | pos) | 3242 | pos) |
| 3243 | (goto-char (point-min)) | 3243 | (goto-char (point-min)) |
| 3244 | (push (cons 'score (and (search-forward | 3244 | (push (cons 'score (and (search-forward |
| 3245 | (string-as-multibyte "\202") nil t) | 3245 | (mm-string-as-multibyte "\202") nil t) |
| 3246 | (- (point) (point-min) 1))) | 3246 | (- (point) (point-min) 1))) |
| 3247 | pos) | 3247 | pos) |
| 3248 | (goto-char (point-min)) | 3248 | (goto-char (point-min)) |
| 3249 | (push (cons 'download (and (search-forward | 3249 | (push (cons 'download (and (search-forward |
| 3250 | (string-as-multibyte "\203") nil t) | 3250 | (mm-string-as-multibyte "\203") nil t) |
| 3251 | (- (point) (point-min) 1))) | 3251 | (- (point) (point-min) 1))) |
| 3252 | pos))) | 3252 | pos))) |
| 3253 | (setq gnus-summary-mark-positions pos)))) | 3253 | (setq gnus-summary-mark-positions pos)))) |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 85f918986d5..bfaf1675703 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -4400,7 +4400,7 @@ Otherwise, generate and save a value for `canlock-password' first." | |||
| 4400 | ;; Check for control characters. | 4400 | ;; Check for control characters. |
| 4401 | (message-check 'control-chars | 4401 | (message-check 'control-chars |
| 4402 | (if (re-search-forward | 4402 | (if (re-search-forward |
| 4403 | (string-as-multibyte "[\000-\007\013\015-\032\034-\037\200-\237]") | 4403 | (mm-string-as-multibyte "[\000-\007\013\015-\032\034-\037\200-\237]") |
| 4404 | nil t) | 4404 | nil t) |
| 4405 | (y-or-n-p | 4405 | (y-or-n-p |
| 4406 | "The article contains control characters. Really post? ") | 4406 | "The article contains control characters. Really post? ") |