[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] Add `w3m-send-page-by-mail'
Katsumi Yamaoka writes:
> 例えば emacs-w3m で得たデコード済みの source が fundamental-mode
> の temp バッファに置かれていて、そこに以下のようなものが含まれて
> いる場合に、
>
> <meta http-equiv="content-type" content="text/html; charset=Shift_JIS">
>
> 次の式を実行すると
>
> (let ((buffer-file-coding-system 'no-conversion))
> (write-region (point-min) (point-max) "FILE" nil 0))
>
> FILE には shift_jis でエンコードされたデータが記録されます。
auto-coding-functions に登録されている sgml-html-meta-auto-coding-function
のおかげのようです。
NEWS には以下の記述がありました。
*** The new variable `auto-coding-functions' lets you specify functions
to examine a file being visited and deduce the proper coding system
for it. (If the coding system is detected incorrectly for a specific
file, you can put a `coding:' tags to override it.)
--
有沢 明宏