[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

w3m-highlight-current-anchor at first line



このバグリポートは emacs-w3m 開発チームに送られます。
あなたのローカルサイトの管理者宛てではありません!!

できるだけ簡潔に述べて下さい:
	- 何が起きましたか?
	- 本当はどうなるべきだったと思いますか?
	- そのとき何をしましたか? (正確に)

もし Lisp のバックトレースがあれば添付して下さい。
================================================================
Dear Bug Team!

藤井宏憲です。

タブを使用しない設定にしていると、
(setq w3m-use-tab nil)

バッファの1行目で、w3m-after-cursor-move-hook により
w3m-highlight-current-anchor が呼び出されると、
ループしてしまいます。

以下のように変更してみました。

$ diff -u w3m.el~ w3m.el

--- w3m.el~	Tue Jul  9 14:25:48 2002
+++ w3m.el	Tue Jul  9 14:26:55 2002
@@ -4234,9 +4234,11 @@
 	  (while (w3m-highlight-current-anchor-1 seq)
 	    (forward-line 1))
 	  (goto-char pos)
-	  (forward-line -1)
-	  (while (w3m-highlight-current-anchor-1 seq)
-	    (forward-line -1)))))))
+
+	  (while (and
+		  (zerop (forward-line -1))
+		  (w3m-highlight-current-anchor-1 seq)))
+	  )))))
 
 (defun w3m-edit-url (url)
   "Edit the local file pointed by URL."
$

================================================================

System Info to help track down your bug:
---------------------------------------
emacs-w3m-version
 => "1.3"
emacs-version
 => "GNU Emacs 21.2.1 (i386-debian-linux-gnu, X toolkit, Xaw3d scroll bars)\n of 2002-03-23 on raven, modified by Debian"
mule-version
 => "5.0 (SAKAKI)"
system-type
 => gnu/linux
w3m-version
 => "w3m/0.3"
w3m-type
 => w3m
w3m-compile-options
 => ("lang=ja" "kanji-symbols" "image" "color" "ansi-color" "mouse" "gpm" "menu" "cookie" "ssl" "ssl-verify" "external-uri-loader" "w3mmailer" "nntp" "gopher" "alarm" "mark" "migemo")
w3m-language
 => "Japanese"
w3m-command-arguments
 => nil
w3m-command-arguments-alist
 => nil
w3m-command-environment
 => nil
w3m-use-mule-ucs
 => nil