Synch to No Gnus 200401272147.
authoryamaoka <yamaoka>
Tue, 27 Jan 2004 21:56:50 +0000 (21:56 +0000)
committeryamaoka <yamaoka>
Tue, 27 Jan 2004 21:56:50 +0000 (21:56 +0000)
lisp/ChangeLog
lisp/mm-view.el
lisp/spam.el
texi/ChangeLog
texi/emacs-mime.texi

index 05ee898..413ac43 100644 (file)
@@ -1,3 +1,14 @@
+2004-01-27  Simon Josefsson  <jas@extundo.com>
+
+       * mm-view.el (mm-fill-flowed): Add.
+       (mm-inline-text): Use it.  Tiny patch from Ralf Angeli
+       <dev.null@iwi.uni-sb.de>.
+
+2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * spam.el (spam-spamassassin-register-ham-routine)
+       (spam-spamassassin-register-spam-routine): fixed function names
+
 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus.el (gnus-tmp-grouplens): Remove.
index baff3db..6e4b3d2 100644 (file)
@@ -1,5 +1,5 @@
 ;;; mm-view.el --- functions for viewing MIME objects
-;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
 ;; This file is part of GNU Emacs.
     (html2text  html2text))
   "The attributes of washer types for text/html.")
 
+(defcustom mm-fill-flowed t
+  "If non-nil an format=flowed article will be displayed flowed."
+  :type 'boolean
+  :group 'mime-display)
+
 ;;; Internal variables.
 
 ;;;
          (mm-insert-part handle)
          (goto-char (point-max)))
       (insert (mm-decode-string (mm-get-part handle) charset)))
-    (when (and (equal type "plain")
+    (when (and mm-fill-flowed
+              (equal type "plain")
               (equal (cdr (assoc 'format (mm-handle-type handle)))
                      "flowed"))
       (save-restriction
index 451a340..eb9c8b2 100644 (file)
@@ -2097,10 +2097,10 @@ REMOVE not nil, remove the ADDRESSES."
 (defun spam-spamassassin-register-ham-routine (articles &optional unregister)
   (spam-spamassassin-register-with-sa-learn articles nil unregister))
 
-(defun spam-assassin-register-spam-routine (articles)
+(defun spam-spamassassin-unregister-spam-routine (articles)
   (spam-spamassassin-register-with-sa-learn articles t t))
 
-(defun spam-assassin-register-ham-routine (articles)
+(defun spam-spamassassin-unregister-ham-routine (articles)
   (spam-spamassassin-register-with-sa-learn articles nil t))
 \f
 ;;;; Hooks
index 665e78d..ff22572 100644 (file)
@@ -1,3 +1,7 @@
+2004-01-27  Simon Josefsson  <jas@extundo.com>
+
+       * emacs-mime.texi (Flowed text): Add.
+
 2004-01-23  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * gnus.texi (Spam ELisp Package Filtering of Incoming Mail):
index 8c51bde..93c676f 100644 (file)
@@ -18,7 +18,7 @@
 
 This file documents the Emacs MIME interface functionality.
 
-Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
+Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
           Free Software Foundation, Inc.
 
 Permission is granted to copy, distribute and/or modify this document
@@ -972,7 +972,11 @@ together and wrapped after the column decided by
 @code{fill-flowed-display-column}.  The default is to wrap after
 @code{fill-column}.
 
-
+@table @code
+@item mm-fill-flowed
+@findex mm-fill-flowed
+If non-nil an format=flowed article will be displayed flowed.
+@end table
 
 
 @node Interface Functions