(article-decode-encoded-words): Fix previous commit again. Oops.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 4 Sep 2006 06:11:46 +0000 (06:11 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 4 Sep 2006 06:11:46 +0000 (06:11 +0000)
lisp/gnus-art.el

index f1de3f6..051213f 100644 (file)
@@ -2535,8 +2535,8 @@ If PROMPT (the prefix), prompt for a coding system to use."
          (if (looking-at "\
 \\(?:Resent-\\)?\\(?:From\\|Cc\\|To\\|Bcc\\|\\(?:In-\\)?Reply-To\\|Sender\
 \\|Mail-Followup-To\\|Mail-Copies-To\\|Approved\\):")
-             (funcall gnus-decode-address-function start (point))
-           (funcall gnus-decode-header-function start (point)))
+             (funcall gnus-decode-address-function start (point-max))
+           (funcall gnus-decode-header-function start (point-max)))
          ;; `gnus-decode-*-function' uses `decode-coding-region' which
          ;; moves the point to `start' in XEmacs.
          (goto-char (point-max)))))))