[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re:
多文字セット化
emacs-w3m
>>>>> In [emacs-w3m : No.01491]
>>>>> Yuuichi Teranishi <teranisi@gohome.org> wrote:
土屋さん> その他、以前からの懸案だった buffer local 変数の取り扱いを整
土屋さん> 理しました。かなり微妙な部分を一気に変更したので、不安定になっ
土屋さん> ている可能性があります。不具合報告をお待ちしています。
寺西さん> w3m-current-forms の値は *w3m* バッファで rendering 前に設定
寺西さん> されるようになってますが、w3m-copy-local-variables で "
寺西さん> *w3m-work*" バッファでの値が上書きされて nil になってしまい
寺西さん> ます。
w3m-initial-frame も、です。^^;;
これは w3m の frame が popup した最初のときだけ値をセットすれば
良くて、その後変更する必要はありません。
寺西さん> 手元ではとりあえず以下のようにしてしのいでますが、
寺西さん> どうしたものでしょうか。
--- w3m.el~ Tue Sep 11 02:05:56 2001
+++ w3m.el Tue Sep 11 05:09:14 2001
@@ -723,7 +723,7 @@
(defsubst w3m-clear-local-variables ()
(setq w3m-current-url nil
w3m-current-title nil
- w3m-initial-frame nil
+; w3m-initial-frame nil
w3m-current-forms nil
w3m-current-post-data nil
w3m-current-referer nil
@@ -737,8 +737,8 @@
(when from-buffer (set-buffer from-buffer))
(setq url w3m-current-url
title w3m-current-title
- frame w3m-initial-frame
- forms w3m-current-forms
+; frame w3m-initial-frame
+; forms w3m-current-forms
post w3m-current-post-data
referer w3m-current-referer
cs w3m-current-coding-system
@@ -746,8 +746,8 @@
prev w3m-previous-url))
(setq w3m-current-url url
w3m-current-title title
- w3m-initial-frame frame
- w3m-current-forms forms
+; w3m-initial-frame frame
+; w3m-current-forms forms
w3m-current-post-data post
w3m-current-referer referer
w3m-current-coding-system cs
--
Katsumi Yamaoka <yamaoka@namazu.org>