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

Re: [emacs-w3m/emacs-w3m] bb_quibbles (#15)



@tsuchm commented on this pull request.


In w3m-form.el:

> @@ -439,7 +440,7 @@ fid=\\([^/]+\\)/type=\\([^/]+\\)/name=\\([^/]*\\)/id=\\(.*\\)$"
 		    (let ((hseq (nth 2 (w3m-action (point))))
 			  (value (w3m-form-get form id)))
 		      (when (> hseq 0)
-			(setq textareas (cons (cons hseq value) textareas)))
+			(push textareas (cons hseq value) textareas))

I think this change contains a mistake. Do you mean (push (cons hseq value) textareas) ?


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.