(message-make-fqdn): Bind case-fold-search.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 23 Oct 2003 23:09:33 +0000 (23:09 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 23 Oct 2003 23:09:33 +0000 (23:09 +0000)
lisp/ChangeLog
lisp/message.el

index 3667ba9..948a110 100644 (file)
@@ -1,3 +1,8 @@
+2003-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * message.el (message-make-fqdn): Bind case-fold-search.
+       Suggested by Christopher Richards <richards@CS.Princeton.EDU>.
+
 2003-10-23  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * gnus.el (spam-process-destination, ham-process-destination):
index 033e301..1e76ad3 100644 (file)
@@ -4642,7 +4642,8 @@ give as trustworthy answer as possible."
         (user-domain
          (if (and user-mail
                   (string-match "@\\(.*\\)\\'" user-mail))
-             (match-string 1 user-mail))))
+             (match-string 1 user-mail)))
+        (case-fold-search t))
     (cond
      ((and message-user-fqdn
           (stringp message-user-fqdn)