Synch to No Gnus 200501240955.
authoryamaoka <yamaoka>
Mon, 24 Jan 2005 11:11:20 +0000 (11:11 +0000)
committeryamaoka <yamaoka>
Mon, 24 Jan 2005 11:11:20 +0000 (11:11 +0000)
lisp/ChangeLog
lisp/mail-source.el

index 561395b..e40f4b4 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-24  Harald Meland <harald.meland@usit.uio.no>  (tiny change)
+
+       * mail-source.el (mail-source-fetch-imap): Search for ^From case
+       sensitively.
+
 2005-01-21  Derek Atkins <warlord@MIT.EDU>  (tiny change)
 
        * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
index 201426b..a4d754b 100644 (file)
@@ -1,5 +1,5 @@
 ;;; mail-source.el --- functions for fetching mail
-;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
+;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
 ;;        Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
@@ -1025,7 +1025,8 @@ This only works when `display-time' is enabled."
                  (insert "From imap " (current-time-string) "\n")
                  (save-excursion
                    (insert str "\n\n"))
-                 (while (re-search-forward "^From " nil t)
+                 (while (let ((case-fold-search nil))
+                          (re-search-forward "^From " nil t))
                    (replace-match ">From "))
                  (goto-char (point-max))))
              (nnheader-ms-strip-cr))