[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: narrowing and w3m-next-anchor
- From: Katsumi Yamaoka <yamaoka@xxxxxxx>
- Date: Mon, 26 May 2003 12:19:33 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 04894
- References: <871xypm5uh.wl%yoichi@geiin.org>
>>>>> In [emacs-w3m : No.04887]
>>>>> Yoichi NAKAYAMA <yoichi@geiin.org> wrote:
中山さん> emacs-21.2で cvs head の emacs-w3m を使っています。リンクの
中山さん> 付いてる文字列がある行まで narrowing して、最後尾に見えてる
中山さん> リンクの手前から TAB (w3m-next-anchor) すると emacs が固まり
中山さん> ます。(試す場合、C-g も効かなくなるので注意して下さい。)
21.2 に限らないようですね。こうでしょうか?
--- w3m.el~ 2003-05-12 21:50:11 +0000
+++ w3m.el 2003-05-26 03:17:23 +0000
@@ -4728,9 +4728,9 @@
(let ((seq (w3m-anchor-sequence))
(pos (point)))
(when (and seq (w3m-highlight-current-anchor-1 seq))
- (forward-line 1)
- (while (w3m-highlight-current-anchor-1 seq)
- (forward-line 1))
+ (when (zerop (forward-line 1))
+ (while (w3m-highlight-current-anchor-1 seq)
+ (forward-line 1)))
(goto-char pos)
(while (and (zerop (forward-line -1))
(w3m-highlight-current-anchor-1 seq))))))))
--
Katsumi Yamaoka <yamaoka@jpl.org>