_

Emacs-wget

wgetEmacsの中からコントロールしたいときに便利ということで、パッケージを作成してみました。Linux Zaurusでどれだけダウンロードするかは別として、やはりあると便利だと思います。それに、例え滅多に使わないにしても、Emacs-w3mを使ってるときにwgetに任せるためにも便利ですから。
設定はこんな感じで。

(cond
 ((locate-library "wget")
  (autoload 'wget "wget" "wget interface for Emacs." t)
  (autoload 'wget-web-page "wget" "wget interface to download whole web page." t)))

(cond
 ((locate-library "w3m")
  (require 'mime-w3m)
  (autoload 'w3m "w3m" "Interface for w3m on Emacs." t)
  (autoload 'w3m-browse-url "w3m" "Ask emacs-w3m to browse URL." t)
  (autoload 'w3m-find-file "w3m" "Find a local file using emacs-w3m." t)
  (autoload 'w3m-search "w3m-search" "Search words using emacs-w3m." t)
  (autoload 'w3m-weather "w3m-weather" "Display a weather report." t)
  (autoload 'w3m-antenna "w3m-antenna" "Report changes of web sites." t)
  (autoload 'w3m-namazu "w3m-namazu" "Search files with Namazu." t)

  ;;; emacs-wget
  (cond
   ((locate-library "w3m-wget")
    (require 'w3m-wget)))))