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

Re: Forward: w3m-el_1.2.6-1



>> On Sat, 23 Mar 2002 00:28:27 +0900
>> ukai@debian.or.jp (Fumitoshi UKAI) said as follows:

>* http://www.nytimes.com/ を見る
>* 適当な記事(例えば  Mideast Peace Talks Resume をclick)
>* Welcome to The New York Times on the Web! という Register at NYTimes.com
> のformになる。
>* B で戻ると

>Debugger entered--Lisp error: (wrong-type-argument arrayp nil)

この問題を回避するための adhoc な変更を 1.2.7 に入れたつもりだったので
すが,単純ミスで直っていなかったことが発覚しました.1.2.7 を利用してい
て,同じエラーに悩んでいる人がいらしたら,以下の変更を行ってください.
Index: w3m-form.el
===================================================================
RCS file: /storage/cvsroot/emacs-w3m/w3m-form.el,v
retrieving revision 1.56.2.10
retrieving revision 1.56.2.11
diff -u -u -r1.56.2.10 -r1.56.2.11
--- w3m-form.el	2002/06/03 01:33:46	1.56.2.10
+++ w3m-form.el	2002/06/04 03:50:11	1.56.2.11
@@ -357,10 +357,10 @@
 		   (string-match
 		    "fid=\\([^/]+\\)/type=\\([^/]+\\)/name=\\(.*\\)$"
 		    fid)
-		   (setq form (nth (string-to-number (match-string 1 fid))
-				   forms)
-			 type (match-string 2 fid)
-			 name (match-string 3 fid)))
+		   (setq type (match-string 2 fid)
+			 name (match-string 3 fid)
+			 form (nth (string-to-number (match-string 1 fid))
+				   forms)))
 	  (cond
 	   ((or (string= type "submit")
 		(string= type "image"))
昨日の今日で 1.2.8 にするのもちょっとみっともないので,1.2.7 に関する
バグ報告がある程度たまってから 1.2.8 にしようと思っています.

-- 
土屋 雅稔  ( TSUCHIYA Masatoshi )