# HG changeset patch # User Miles Bader # Date 1168321239 0 # Node ID 0fd7f29f20d1e612fbc7d6ca4253d1ff81de781f # Parent bdffb0038313c302c80cc12404998ee507685328 Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 186-191) - Update from CVS Revision: emacs@sv.gnu.org/emacs--devo--0--patch-595 diff -r bdffb0038313 -r 0fd7f29f20d1 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Tue Jan 09 05:04:15 2007 +0000 +++ b/lisp/gnus/ChangeLog Tue Jan 09 05:40:39 2007 +0000 @@ -1,4 +1,4 @@ -2007-01-06 Reiner Steib +2007-01-07 Reiner Steib * gnus-soup.el: Add missing :group in previous change. @@ -7,6 +7,32 @@ * gnus-soup.el (gnus-soup): New custom group. Make user variables customizable. +2007-01-03 Andreas Seltenreich + + * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the + headers read from disk with the ones newly found in the current search. + This should no longer cause problems, because the article numbers in + Gmane's `nov.php' output are ignored since the previous change. + +2006-01-03 Andreas Seltenreich + + * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for + solid groups. + +2006-01-03 Lars Magne Ingebrigtsen + + * nnweb.el (nnweb-gmane-create-mapping): Use the article number from + the headers when creating the mapping to avoid mismappings. + (nnweb-gmane-create-mapping): Always nix out old mapping. + +2007-01-02 Andreas Seltenreich + + * gmm-utils.el (gmm-tool-bar-style): Fix custom type. + +2007-01-01 Katsumi Yamaoka + + * mm-decode.el (mm-display-external): Use itimer function for XEmacs. + 2006-12-30 Andreas Seltenreich * gnus-sum.el (gnus-summary-insert-dormant-articles): Fix typo in diff -r bdffb0038313 -r 0fd7f29f20d1 lisp/gnus/gmm-utils.el --- a/lisp/gnus/gmm-utils.el Tue Jan 09 05:04:15 2007 +0000 +++ b/lisp/gnus/gmm-utils.el Tue Jan 09 05:40:39 2007 +0000 @@ -203,8 +203,8 @@ 'gnome 'retro) "Prefered tool bar style." - :type '(choice (const :tag "GNOME style" 'gnome) - (const :tag "Retro look" 'retro)) + :type '(choice (const :tag "GNOME style" gnome) + (const :tag "Retro look" retro)) :group 'gmm) (defvar tool-bar-map) diff -r bdffb0038313 -r 0fd7f29f20d1 lisp/gnus/mm-decode.el --- a/lisp/gnus/mm-decode.el Tue Jan 09 05:04:15 2007 +0000 +++ b/lisp/gnus/mm-decode.el Tue Jan 09 05:40:39 2007 +0000 @@ -883,13 +883,21 @@ ;; a vector in Emacs but is a list in XEmacs) ;; requires that it is lexically scoped. (timer (run-at-time 2.0 nil 'ignore))) - (lambda (process state) - (when (eq 'exit (process-status process)) - (if (memq timer timer-list) - (timer-set-function timer fn) - (funcall fn)) - (ignore-errors (eval fm)) - (message "%s" done)))))) + (if (boundp 'itimer-list) + (lambda (process state) + (when (eq 'exit (process-status process)) + (if (memq timer itimer-list) + (set-itimer-function timer fn) + (funcall fn)) + (ignore-errors (eval fm)) + (message "%s" done))) + (lambda (process state) + (when (eq 'exit (process-status process)) + (if (memq timer timer-list) + (timer-set-function timer fn) + (funcall fn)) + (ignore-errors (eval fm)) + (message "%s" done))))))) (mm-handle-set-external-undisplayer handle (cons file buffer))) (message "Displaying %s..." command)) diff -r bdffb0038313 -r 0fd7f29f20d1 lisp/gnus/nnweb.el --- a/lisp/gnus/nnweb.el Tue Jan 09 05:04:15 2007 +0000 +++ b/lisp/gnus/nnweb.el Tue Jan 09 05:40:39 2007 +0000 @@ -480,7 +480,7 @@ (from (mail-header-from header)) (subject (mail-header-subject header)) (rfc2047-encoding-type 'mime)) - (when (string-match " \\([^:]+\\):\\([0-9]+\\)" xref) + (when (string-match " \\([^:]+\\)[:/]\\([0-9]+\\)" xref) (mail-header-set-xref header (format "http://article.gmane.org/%s/%s/raw" @@ -496,11 +496,8 @@ (rfc2047-encode-string subject)) (unless (nnweb-get-hashtb (mail-header-xref header)) - (push - (list - (incf (cdr active)) - header) - map) + (mail-header-set-number header (incf (cdr active))) + (push (list (mail-header-number header) header) map) (nnweb-set-hashtb (cadar map) (car map)))))) (forward-line 1))) (nnheader-message 7 "Searching Gmane...done")