(nnheader-init-server-buffer): Change buffer's multibyteness

after rather than before erasing it.
This commit is contained in:
Stefan Monnier 2008-04-05 20:14:17 +00:00
parent 75eda25b52
commit 33e2f72c04
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
* nnheader.el (nnheader-init-server-buffer): Change buffer's multibyteness
after rather than before erasing it.
* gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
mm-with-multibyte.
(gnus-request-article-this-buffer): Make sure the proper decoding is used

View file

@ -575,8 +575,8 @@ the line could be found."
(unless (gnus-buffer-live-p nntp-server-buffer)
(setq nntp-server-buffer (get-buffer-create " *nntpd*")))
(with-current-buffer nntp-server-buffer
(mm-enable-multibyte)
(erase-buffer)
(mm-enable-multibyte)
(kill-all-local-variables)
(setq case-fold-search t) ;Should ignore case.
(set (make-local-variable 'nntp-process-response) nil)