From cdc95e9dddd6b7dc1531ba667d6214ae0a98976e Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 7 Oct 2002 03:04:34 +0000 Subject: [PATCH] * mm-url.el (mm-url-form-encode-xwfu): Use `file-coding-system' instead of `buffer-file-coding-system' when Mule 2 is running. --- ChangeLog | 4 ++++ lisp/mm-url.el | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 689b971..b7d341c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2002-10-07 Katsumi Yamaoka + * lisp/mm-url.el (mm-url-form-encode-xwfu): Use + `file-coding-system' instead of `buffer-file-coding-system' when + Mule 2 is running. + * lisp/gnus-group.el: Require `mm-url' only when compiling. (gnus-group-fetch-charter): Require `mm-url'. diff --git a/lisp/mm-url.el b/lisp/mm-url.el index f1c032c..fb19b42 100644 --- a/lisp/mm-url.el +++ b/lisp/mm-url.el @@ -378,7 +378,9 @@ spaces. Die Die Die." (encode-coding-string chunk (if (fboundp 'find-coding-systems-string) (car (find-coding-systems-string chunk)) - buffer-file-coding-system)) + (static-if (boundp 'MULE) + file-coding-system + buffer-file-coding-system))) chunk) "")) -- 1.7.10.4