*** pub/qgnus/lisp/gnus-soup.el Mon Jun 1 04:30:25 1998 --- qgnus/lisp/gnus-soup.el Sat Jun 27 07:55:43 1998 *************** *** 310,315 **** --- 310,317 ---- (or (mail-header-lines header) "0")))) (defun gnus-soup-save-areas () + "Write all SOUP buffers." + (interactive) (gnus-soup-write-areas) (save-excursion (let (buf) *** pub/qgnus/lisp/gnus-sum.el Fri Jun 26 15:54:55 1998 --- qgnus/lisp/gnus-sum.el Sat Jun 27 07:55:44 1998 *************** *** 4078,4085 **** (defun gnus-update-marks () "Enter the various lists of marked articles into the newsgroup info list." ! (let ((types (gnus-delete-alist 'cached ! (copy-sequence gnus-article-mark-lists))) (info (gnus-get-info gnus-newsgroup-name)) (uncompressed '(score bookmark killed)) type list newmarked symbol) --- 4078,4084 ---- (defun gnus-update-marks () "Enter the various lists of marked articles into the newsgroup info list." ! (let ((types gnus-article-mark-lists) (info (gnus-get-info gnus-newsgroup-name)) (uncompressed '(score bookmark killed)) type list newmarked symbol) *** pub/qgnus/lisp/gnus.el Fri Jun 26 15:54:56 1998 --- qgnus/lisp/gnus.el Sat Jun 27 07:55:44 1998 *************** *** 250,256 **** :link '(custom-manual "(gnus)Exiting Gnus") :group 'gnus) ! (defconst gnus-version-number "5.6.16" "Version number for this version of Gnus.") (defconst gnus-version (format "Gnus v%s" gnus-version-number) --- 250,256 ---- :link '(custom-manual "(gnus)Exiting Gnus") :group 'gnus) ! (defconst gnus-version-number "5.6.17" "Version number for this version of Gnus.") (defconst gnus-version (format "Gnus v%s" gnus-version-number) *** pub/qgnus/lisp/message.el Fri Jun 26 15:54:57 1998 --- qgnus/lisp/message.el Sat Jun 27 07:55:45 1998 *************** *** 1313,1319 **** "-- $\\|---+$\\|" page-delimiter ;;!!! Uhm... shurely this can't be right? ! "[> " (regexp-quote message-yank-prefix) "]+$\\|")) (setq paragraph-separate paragraph-start) (make-local-variable 'message-reply-headers) (setq message-reply-headers nil) --- 1313,1319 ---- "-- $\\|---+$\\|" page-delimiter ;;!!! Uhm... shurely this can't be right? ! "[> " (regexp-quote message-yank-prefix) "]+$")) (setq paragraph-separate paragraph-start) (make-local-variable 'message-reply-headers) (setq message-reply-headers nil) *************** *** 1720,1726 **** (unless (bolp) (insert ?\n)) (unless modified ! (setq message-checksum (cons (message-checksum) (buffer-size))))))) (defun message-cite-original-without-signature () "Cite function in the standard Message manner." --- 1720,1726 ---- (unless (bolp) (insert ?\n)) (unless modified ! (setq message-checksum (message-checksum)))))) (defun message-cite-original-without-signature () "Cite function in the standard Message manner." *************** *** 2438,2445 **** (message-check 'new-text (or (not message-checksum) ! (not (and (eq (message-checksum) (car message-checksum)) ! (eq (buffer-size) (cdr message-checksum)))) (y-or-n-p "It looks like no new text has been added. Really post? "))) ;; Check the length of the signature. --- 2438,2444 ---- (message-check 'new-text (or (not message-checksum) ! (not (eq (message-checksum) (car message-checksum))) (y-or-n-p "It looks like no new text has been added. Really post? "))) ;; Check the length of the signature. *** pub/qgnus/lisp/nnfolder.el Fri Jun 26 04:26:47 1998 --- qgnus/lisp/nnfolder.el Sat Jun 27 07:55:45 1998 *************** *** 397,406 **** (save-excursion (set-buffer buffer) (goto-char (point-min)) ! (if (looking-at "X-From-Line: ") ! (replace-match "From ") ! (unless (looking-at message-unix-mail-delimiter) ! (insert "From nobody " (current-time-string) "\n"))) (nnfolder-normalize-buffer) (set-buffer nnfolder-current-buffer) (goto-char (point-min)) --- 397,411 ---- (save-excursion (set-buffer buffer) (goto-char (point-min)) ! (let (xfrom) ! (while (re-search-forward "^X-From-Line: \\(.*\\)$" nil t) ! (setq xfrom (match-string 1)) ! (gnus-delete-line)) ! (goto-char (point-min)) ! (if xfrom ! (insert "From " xfrom "\n") ! (unless (looking-at message-unix-mail-delimiter) ! (insert "From nobody " (current-time-string) "\n")))) (nnfolder-normalize-buffer) (set-buffer nnfolder-current-buffer) (goto-char (point-min)) *** pub/qgnus/lisp/nngateway.el Fri Jun 26 04:26:47 1998 --- qgnus/lisp/nngateway.el Sat Jun 27 07:55:45 1998 *************** *** 81,87 **** (message-remove-header "to") (message-remove-header "cc") (goto-char (point-min)) ! (insert "To: mail2news@" gateway "\n")) (nnoo-define-skeleton nngateway) --- 81,87 ---- (message-remove-header "to") (message-remove-header "cc") (goto-char (point-min)) ! (insert "To: " gateway "\n")) (nnoo-define-skeleton nngateway) *** pub/qgnus/lisp/ChangeLog Fri Jun 26 15:54:52 1998 --- qgnus/lisp/ChangeLog Sat Jun 27 07:55:43 1998 *************** *** 1,3 **** --- 1,22 ---- + Sat Jun 27 07:50:50 1998 Lars Magne Ingebrigtsen + + * gnus.el: Gnus v5.6.18 is released. + + Sat Jun 27 03:18:57 1998 Lars Magne Ingebrigtsen + + * gnus-soup.el (gnus-soup-save-areas): Made interactive. + + * nnfolder.el (nnfolder-request-replace-article): Check all X-From + headers. + + * gnus-sum.el (gnus-update-marks): Don't nix out cache lists. + + * nngateway.el (nngateway-mail2news-header-transformation): + Changed semantics. + + * message.el (message-check-news-body-syntax): Don't look at + buffer size to see whether text has been added. + Fri Jun 26 15:46:05 1998 Lars Magne Ingebrigtsen * gnus.el: Gnus v5.6.16 is released. *** pub/qgnus/texi/gnus.texi Fri Jun 26 15:54:59 1998 --- qgnus/texi/gnus.texi Sat Jun 27 07:55:47 1998 *************** *** 1,7 **** \input texinfo @c -*-texinfo-*- @setfilename gnus ! @settitle Gnus 5.6.16 Manual @synindex fn cp @synindex vr cp @synindex pg cp --- 1,7 ---- \input texinfo @c -*-texinfo-*- @setfilename gnus ! @settitle Gnus 5.6.18 Manual @synindex fn cp @synindex vr cp @synindex pg cp *************** *** 316,322 **** @tex @titlepage ! @title Gnus 5.6.16 Manual @author by Lars Magne Ingebrigtsen @page --- 316,322 ---- @tex @titlepage ! @title Gnus 5.6.18 Manual @author by Lars Magne Ingebrigtsen @page *************** *** 352,358 **** spool or your mbox file. All at the same time, if you want to push your luck. ! This manual corresponds to Gnus 5.6.16. @end ifinfo --- 352,358 ---- spool or your mbox file. All at the same time, if you want to push your luck. ! This manual corresponds to Gnus 5.6.18. @end ifinfo *************** *** 11071,11077 **** @item nngateway-mail2news-header-transformation Creates a @code{To} header that looks like ! @samp{mail2news}@@@code{nngateway-address}. @end table --- 11071,11086 ---- @item nngateway-mail2news-header-transformation Creates a @code{To} header that looks like ! @code{nngateway-address}. ! ! Here's an example: ! ! @lisp ! (setq gnus-post-method ! '(nngateway "mail2news@replay.com" ! (nngateway-header-transformation ! nngateway-mail2news-header-transformation))) ! @end lisp @end table *************** *** 13680,13686 **** @menu * Formatting Basics:: A formatting variable is basically a format string. ! * Mode Line Formatting:: Some rules about mode line formatting varsables. * Advanced Formatting:: Modifying output in various ways. * User-Defined Specs:: Having Gnus call your own functions. * Formatting Fonts:: Making the formatting look colorful and nice. --- 13689,13695 ---- @menu * Formatting Basics:: A formatting variable is basically a format string. ! * Mode Line Formatting:: Some rules about mode line formatting variables. * Advanced Formatting:: Modifying output in various ways. * User-Defined Specs:: Having Gnus call your own functions. * Formatting Fonts:: Making the formatting look colorful and nice. *************** *** 15657,15662 **** --- 15666,15672 ---- Jari Aalto, Adrian Aichner, + Vladimir Alexiev, Russ Allbery, Peter Arius, Matt Armstrong, *************** *** 15675,15681 **** --- 15685,15693 ---- Joao Cachopo, Zlatko Calusic, Massimo Campostrini, + Castor, Dan Christensen, + Kevin Christian, Michael R. Cook, Glenn Coombs, Frank D. Cringle, *************** *** 15694,15699 **** --- 15706,15712 ---- Sam Falkner, Nelson Jose dos Santos Ferreira, Sigbjorn Finne, + Decklin Foster, Gary D. Foster, Paul Franklin, Guy Geens, *************** *** 15776,15781 **** --- 15789,15795 ---- Dan Schmidt, Ralph Schleicher, Philippe Schnoebelen, + Andreas Schwab, Randal L. Schwartz, Justin Sheehy, Danny Siu, *************** *** 15787,15792 **** --- 15801,15807 ---- Darren Stalder, Richard Stallman, Greg Stark, + Sam Steingold, Paul Stodghill, Kurt Swanson, Samuel Tardieu, *************** *** 15826,15832 **** * ding Gnus:: New things in Gnus 5.0/5.1, the first new Gnus. * September Gnus:: The Thing Formally Known As Gnus 5.3/5.3. * Red Gnus:: Third time best---Gnus 5.4/5.5. ! * Quassia Gnus:: Two times two is four, or Gnus 5.6.16. @end menu These lists are, of course, just @emph{short} overviews of the --- 15841,15847 ---- * ding Gnus:: New things in Gnus 5.0/5.1, the first new Gnus. * September Gnus:: The Thing Formally Known As Gnus 5.3/5.3. * Red Gnus:: Third time best---Gnus 5.4/5.5. ! * Quassia Gnus:: Two times two is four, or Gnus 5.6.18. @end menu These lists are, of course, just @emph{short} overviews of the *************** *** 16361,16367 **** @node Quassia Gnus @subsubsection Quassia Gnus ! New features in Gnus 5.6.16: @itemize @bullet --- 16376,16382 ---- @node Quassia Gnus @subsubsection Quassia Gnus ! New features in Gnus 5.6.18: @itemize @bullet *** pub/qgnus/texi/message.texi Fri Jun 26 15:54:59 1998 --- qgnus/texi/message.texi Sat Jun 27 07:55:48 1998 *************** *** 1,7 **** \input texinfo @c -*-texinfo-*- @setfilename message ! @settitle Message 5.6.16 Manual @synindex fn cp @synindex vr cp @synindex pg cp --- 1,7 ---- \input texinfo @c -*-texinfo-*- @setfilename message ! @settitle Message 5.6.18 Manual @synindex fn cp @synindex vr cp @synindex pg cp *************** *** 42,48 **** @tex @titlepage ! @title Message 5.6.16 Manual @author by Lars Magne Ingebrigtsen @page --- 42,48 ---- @tex @titlepage ! @title Message 5.6.18 Manual @author by Lars Magne Ingebrigtsen @page *************** *** 83,89 **** * Key Index:: List of Message mode keys. @end menu ! This manual corresponds to Message 5.6.16. Message is distributed with the Gnus distribution bearing the same version number as this manual has. --- 83,89 ---- * Key Index:: List of Message mode keys. @end menu ! This manual corresponds to Message 5.6.18. Message is distributed with the Gnus distribution bearing the same version number as this manual has. *** pub/qgnus/texi/ChangeLog Fri Jun 26 15:54:59 1998 --- qgnus/texi/ChangeLog Sat Jun 27 07:55:48 1998 *************** *** 1,6 **** ! 1998-06-26 Simon Josefsson ! * gnus-sum.el (gnus-get-newsgroup-headers): parse Chars: headers Fri Jun 26 13:33:00 1998 Yoshiki Hayashi --- 1,6 ---- ! Sat Jun 27 04:37:14 1998 Lars Magne Ingebrigtsen ! * gnus.texi (Mail-To-News Gateways): Addition. Fri Jun 26 13:33:00 1998 Yoshiki Hayashi