*** pub/pgnus/lisp/gnus-agent.el Sun Nov 8 01:04:28 1998 --- pgnus/lisp/gnus-agent.el Sun Nov 8 23:18:00 1998 *************** *** 673,679 **** ;; Fetch the articles from the backend. (if (gnus-check-backend-function 'retrieve-articles group) (setq pos (gnus-retrieve-articles articles group)) ! (with-temp-file nil (let (article) (while (setq article (pop articles)) (when (gnus-request-article article group) --- 673,679 ---- ;; Fetch the articles from the backend. (if (gnus-check-backend-function 'retrieve-articles group) (setq pos (gnus-retrieve-articles articles group)) ! (with-temp-buffer (let (article) (while (setq article (pop articles)) (when (gnus-request-article article group) *** pub/pgnus/lisp/gnus-art.el Sun Nov 8 01:04:29 1998 --- pgnus/lisp/gnus-art.el Sun Nov 8 23:18:00 1998 *************** *** 2394,2400 **** (delete-region (point) (point-max))) (if (stringp (car handles)) (if (equal (car handles) "multipart/alternative") ! (gnus-mime-display-alternative (cdr handles)) (gnus-mime-display-mixed (cdr handles))) (gnus-mime-display-single handles))))) --- 2394,2402 ---- (delete-region (point) (point-max))) (if (stringp (car handles)) (if (equal (car handles) "multipart/alternative") ! (let ((id (1+ (length gnus-article-mime-handle-alist)))) ! (push (cons id handles) gnus-article-mime-handle-alist) ! (gnus-mime-display-alternative (cdr handles) nil nil id)) (gnus-mime-display-mixed (cdr handles))) (gnus-mime-display-single handles))))) *** pub/pgnus/lisp/gnus.el Sun Nov 8 01:04:34 1998 --- pgnus/lisp/gnus.el Sun Nov 8 23:18:01 1998 *************** *** 254,260 **** :link '(custom-manual "(gnus)Exiting Gnus") :group 'gnus) ! (defconst gnus-version-number "0.41" "Version number for this version of Gnus.") (defconst gnus-version (format "Pterodactyl Gnus v%s" gnus-version-number) --- 254,260 ---- :link '(custom-manual "(gnus)Exiting Gnus") :group 'gnus) ! (defconst gnus-version-number "0.42" "Version number for this version of Gnus.") (defconst gnus-version (format "Pterodactyl Gnus v%s" gnus-version-number) *** pub/pgnus/lisp/message.el Sun Nov 8 01:04:35 1998 --- pgnus/lisp/message.el Sun Nov 8 23:18:01 1998 *************** *** 2644,2650 **** (zone (nth 8 (decode-time now))) (sign "+")) (when (< zone 0) ! (setq sign "")) (concat (format-time-string "%d" now) ;; The month name of the %b spec is locale-specific. Pfff. --- 2644,2651 ---- (zone (nth 8 (decode-time now))) (sign "+")) (when (< zone 0) ! (setq sign "-") ! (setq zone (- zone))) (concat (format-time-string "%d" now) ;; The month name of the %b spec is locale-specific. Pfff. *** pub/pgnus/lisp/nntp.el Sun Nov 8 01:04:37 1998 --- pgnus/lisp/nntp.el Sun Nov 8 23:18:02 1998 *************** *** 750,756 **** This function is supposed to be called from `nntp-server-opened-hook'. It will make innd servers spawn an nnrpd process to allow actual article reading." ! (nntp-send-command "^\\.*\r?\n" "MODE READER")) (defun nntp-send-authinfo (&optional send-if-force) "Send the AUTHINFO to the nntp server. --- 750,756 ---- This function is supposed to be called from `nntp-server-opened-hook'. It will make innd servers spawn an nnrpd process to allow actual article reading." ! (nntp-send-command "^.*\n" "MODE READER")) (defun nntp-send-authinfo (&optional send-if-force) "Send the AUTHINFO to the nntp server. *************** *** 858,864 **** (when (and (buffer-name pbuffer) process) (process-kill-without-query process) ! (nntp-wait-for process "^\\.*\n" buffer nil t) (if (memq (process-status process) '(open run)) (prog1 (caar (push (list process buffer nil) nntp-connection-alist)) --- 858,864 ---- (when (and (buffer-name pbuffer) process) (process-kill-without-query process) ! (nntp-wait-for process "^.*\n" buffer nil t) (if (memq (process-status process) '(open run)) (prog1 (caar (push (list process buffer nil) nntp-connection-alist)) *** pub/pgnus/lisp/ChangeLog Sun Nov 8 01:04:28 1998 --- pgnus/lisp/ChangeLog Sun Nov 8 23:18:00 1998 *************** *** 1,3 **** --- 1,23 ---- + Sun Nov 8 23:17:24 1998 Lars Magne Ingebrigtsen + + * gnus.el: Pterodactyl Gnus v0.42 is released. + + Sun Nov 8 02:36:33 1998 Shenghuo ZHU + + * gnus-art.el (gnus-display-mime): Add id for alternative part. + + 1998-11-08 02:24:47 Simon Josefsson + + * nntp.el (nntp-send-mode-reader): Revert. + + Sun Nov 8 00:45:13 1998 Shenghuo ZHU + + * gnus-agent.el (gnus-agent-fetch-articles): Use with-temp-buffer. + + Sat Nov 7 23:07:24 1998 Shenghuo ZHU + + * message.el (message-make-date): Fix for negative time zones. + Sun Nov 8 01:00:16 1998 Lars Magne Ingebrigtsen * gnus.el: Pterodactyl Gnus v0.41 is released. *** pub/pgnus/texi/gnus.texi Sun Nov 8 01:04:40 1998 --- pgnus/texi/gnus.texi Sun Nov 8 23:18:03 1998 *************** *** 1,7 **** \input texinfo @c -*-texinfo-*- @setfilename gnus ! @settitle Pterodactyl Gnus 0.41 Manual @synindex fn cp @synindex vr cp @synindex pg cp --- 1,7 ---- \input texinfo @c -*-texinfo-*- @setfilename gnus ! @settitle Pterodactyl Gnus 0.42 Manual @synindex fn cp @synindex vr cp @synindex pg cp *************** *** 318,324 **** @tex @titlepage ! @title Pterodactyl Gnus 0.41 Manual @author by Lars Magne Ingebrigtsen @page --- 318,324 ---- @tex @titlepage ! @title Pterodactyl Gnus 0.42 Manual @author by Lars Magne Ingebrigtsen @page *************** *** 354,360 **** spool or your mbox file. All at the same time, if you want to push your luck. ! This manual corresponds to Pterodactyl Gnus 0.41. @end ifinfo --- 354,360 ---- spool or your mbox file. All at the same time, if you want to push your luck. ! This manual corresponds to Pterodactyl Gnus 0.42. @end ifinfo *** pub/pgnus/texi/message.texi Sun Nov 8 01:04:40 1998 --- pgnus/texi/message.texi Sun Nov 8 23:18:03 1998 *************** *** 1,7 **** \input texinfo @c -*-texinfo-*- @setfilename message ! @settitle Pterodactyl Message 0.41 Manual @synindex fn cp @synindex vr cp @synindex pg cp --- 1,7 ---- \input texinfo @c -*-texinfo-*- @setfilename message ! @settitle Pterodactyl Message 0.42 Manual @synindex fn cp @synindex vr cp @synindex pg cp *************** *** 42,48 **** @tex @titlepage ! @title Pterodactyl Message 0.41 Manual @author by Lars Magne Ingebrigtsen @page --- 42,48 ---- @tex @titlepage ! @title Pterodactyl Message 0.42 Manual @author by Lars Magne Ingebrigtsen @page *************** *** 83,89 **** * Key Index:: List of Message mode keys. @end menu ! This manual corresponds to Pterodactyl Message 0.41. Message is distributed with the Gnus distribution bearing the same version number as this manual. --- 83,89 ---- * Key Index:: List of Message mode keys. @end menu ! This manual corresponds to Pterodactyl Message 0.42. Message is distributed with the Gnus distribution bearing the same version number as this manual.