[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Problem report
- From: TSUCHIYA Masatoshi <tsuchiya@xxxxxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 29 Oct 2001 17:35:42 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 01934
- References: <wkitcysvl4.fsf@ae.advantest.co.jp>
>> On Mon, 29 Oct 2001 17:23:51 +0900
>> 「杉」== sugiyama@ae.advantest.co.jp (Takenobu Sugiyama) said as follows:
杉> さきほど cvs-update して install したところ、2つ問題が生じましたの
杉> で、報告まで。
バグ報告有り難うございます。
杉> 1. 表示がすべて文字化けする。
杉> ちなみに、mule-ucs は install していません。
それは、きっと「日本語用 w3m か、英語用 w3m か」の自動判定に失敗してい
るのだろうと思います。
(setq w3m-accept-japanese-characters t)
と ~/.emacs に書くと、うまく動いたりしないでしょうか? または、添付した
パッチで症状は改善しないでしょうか?
杉> 2. bookmark-view が動かない。
杉> Solaris では動きましたので、Win9xにのみ生じる問題かも知れません。
これも、w3m-type の自動判定部分が邪魔をしている可能性が高いと思います。
こちらに関しては、以下のパッチで直ると思うのですが、どうでしょうか?
Index: w3m.el
===================================================================
RCS file: /storage/cvsroot/emacs-w3m/w3m.el,v
retrieving revision 1.456
diff -u -u -r1.456 w3m.el
--- w3m.el 2001/10/29 01:41:49 1.456
+++ w3m.el 2001/10/29 08:33:30
@@ -243,8 +243,8 @@
(default-process-coding-system (cons 'binary 'binary)))
(call-process-region (point-min) (point-max) w3m-command
t t nil "-T" "text/html" "-dump")
- (string= (buffer-string)
- (string ?\264 ?\301 ?\273 ?\372 ?\n))))))
+ (string= (buffer-substring-no-properties 1 5)
+ (string ?\264 ?\301 ?\273 ?\372))))))
"Non-nil means that `w3m' accepts Japanese characters.")
(defcustom w3m-coding-system
@@ -326,13 +326,19 @@
:type 'boolean)
(defcustom w3m-profile-directory
- (concat "~/." (file-name-nondirectory w3m-command))
+ (concat "~/." (file-name-nondirectory
+ (if (string-match "\\.exe\\'" w3m-command)
+ (substring w3m-command (match-beginning 0))
+ w3m-command)))
"*Directory of w3m profiles."
:group 'w3m
:type 'directory)
(defcustom w3m-default-save-directory
- (concat "~/." (file-name-nondirectory w3m-command))
+ (concat "~/." (file-name-nondirectory
+ (if (string-match "\\.exe\\'" w3m-command)
+ (substring w3m-command (match-beginning 0))
+ w3m-command)))
"*Default directory for save file."
:group 'w3m
:type 'directory)
--
土屋 雅稔 ( TSUCHIYA Masatoshi )