aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/ChangeLog3
-rw-r--r--lisp/gnus/gnus-soup.el7
2 files changed, 6 insertions, 4 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index f1122be967b..1dbde2ece02 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,5 +1,8 @@
12008-03-12 Stefan Monnier <monnier@iro.umontreal.ca> 12008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * gnus-soup.el (gnus-soup-send-packet): Don't use
4 mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
5
3 * nnmh.el: Use with-current-buffer. 6 * nnmh.el: Use with-current-buffer.
4 (nnmh-request-list-1): Use mm-string-to-multibyte rather than 7 (nnmh-request-list-1): Use mm-string-to-multibyte rather than
5 mm-string-as-multibyte on the output of mm-encode-coding-string. 8 mm-string-as-multibyte on the output of mm-encode-coding-string.
diff --git a/lisp/gnus/gnus-soup.el b/lisp/gnus/gnus-soup.el
index f34e001e231..7133c452217 100644
--- a/lisp/gnus/gnus-soup.el
+++ b/lisp/gnus/gnus-soup.el
@@ -594,9 +594,8 @@ Return whether the unpacking was successful."
594 (mail-fetch-field "to")) 594 (mail-fetch-field "to"))
595 (sit-for 1) 595 (sit-for 1)
596 (let ((mail-header-separator "")) 596 (let ((mail-header-separator ""))
597 (mm-with-unibyte-current-buffer 597 (funcall (or message-send-mail-real-function
598 (funcall (or message-send-mail-real-function 598 message-send-mail-function))))
599 message-send-mail-function)))))
600 (t 599 (t
601 (error "Unknown reply kind"))) 600 (error "Unknown reply kind")))
602 (set-buffer msg-buf) 601 (set-buffer msg-buf)
@@ -610,5 +609,5 @@ Return whether the unpacking was successful."
610 609
611(provide 'gnus-soup) 610(provide 'gnus-soup)
612 611
613;;; arch-tag: eddfa69d-13e8-4aea-84ef-62a526ef185c 612;; arch-tag: eddfa69d-13e8-4aea-84ef-62a526ef185c
614;;; gnus-soup.el ends here 613;;; gnus-soup.el ends here