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

Re: emacs-wget 0.3.1



安宅です。こんばんは。

From: TSURUDA Naoki <tsuru@yokohama.office.ne.jp>
Subject: [emacs-w3m:04169] Re: emacs-wget 0.3.1
Date: Mon, 28 Oct 2002 19:28:28 +0900 (JST)

> はじめまして。
> 横浜の鶴田と言います。
> 
はじめまして。

> 以下の環境で emacs-wget 0.3.1 を使用していますが、wget.exe の引数の順
> 番がおかしいらしく、file は download できるのですが "failed" と言われ
> てしまいます。
> 
添付のパッチを試して頂けますか。
wget.el のあるディレクトリーで次のようにします。
$ patch < wget.patch

ちなみに素の wget コマンドでダウンロードした時、
メッセージは日本語でしょうか。英語でしょうか。

> ちょっと検索したところ、小関さんの日記(※)で同様(?)の報告を見付けました。
> # 残念ながら対処方法は見あたらなかったのですが...
> 
> (※)http://cgi.NetLaputa.ne.jp/~kose/diary/?200207b#200207162

まぁ。3 か月も前の日記ですね。
w3m-wget.el についても、つっこんでる...

# そうか。eval-after-load を使えば w3m.el と連携が取り易いのか。

                                    ----Input with T-Code!
           http://isweb22.infoseek.co.jp/computer/pop-club
     Masayuki Ataka / 安宅 正之 (ataka@milk.freemail.ne.jp)
Index: wget.el
===================================================================
RCS file: /home/m1378502/repository/wget/wget.el,v
retrieving revision 1.37
diff -c -r1.37 wget.el
*** wget.el	26 Oct 2002 08:59:19 -0000	1.37
--- wget.el	28 Oct 2002 13:30:38 -0000
***************
*** 388,398 ****
    "Wget URI asynchronously.
  Optional argument OPTIONS is a list of options to pass wget
  process."
!   (let* ((args (append  (list uri) options))
  	 (buf  wget-process-buffer)
! 	 (proc (if (and wget-env-command
! 			(not (string= (getenv "LANG") "C")))
! 		   (apply 'start-process "wget" buf wget-env-command "LANG=C" wget-command args)
  		 (apply 'start-process "wget" buf wget-command args)))
  	 (win  (selected-window)))
      (setq wget-process-percent-alist
--- 388,400 ----
    "Wget URI asynchronously.
  Optional argument OPTIONS is a list of options to pass wget
  process."
!   (let* ((args `(,uri ,@options))
  	 (buf  wget-process-buffer)
! 	 (lang (getenv "LANG"))
! 	 (proc (if (and wget-env-command lang
! 			(not (string= lang "C")))
! 		   (apply 'start-process "wget" buf wget-env-command 
! 			  `("LANG=C" ,wget-command ,@args))
  		 (apply 'start-process "wget" buf wget-command args)))
  	 (win  (selected-window)))
      (setq wget-process-percent-alist