[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
browse-url-interactive-arg
- From: TSUCHIYA Masatoshi <tsuchiya@xxxxxxxxxx>
- Date: Wed, 14 Apr 2004 16:35:03 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 06630
http://www.emacswiki.org/cgi-bin/wiki/WThreeM says as follows:
wiki> See also: BrowseUrl.
wiki>
wiki> (setq browse-url-browser-function 'w3m-browse-url)
wiki> (autoload 'w3m-browse-url "w3m" "Ask a WWW browser to show a URL." t)
wiki> (global-set-key "\C-xm" 'browse-url-at-point)
wiki>
wiki> Note that w3m-browse-url in w3m.el uses browse-url-interactive-arg,
wiki> but makes no provision to load it. w3m.el has the following:
wiki>
wiki> (eval-when-compile
wiki> (autoload 'browse-url-interactive-arg "browse-url"))
wiki>
wiki> Why is the autoload only set up for compile time? It seems to be
wiki> needed for run time as well. Adding this to .emacs fixed it for
wiki> me. -- ZwaX
wiki>
wiki> (autoload 'browse-url-interactive-arg "browse-url")
I have just fixed this problem in the other way.
2004-04-14 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
* w3m.el (w3m-browse-url): Load `browse-url' before calling
`browse-url-interactive-arg'.
--
TSUCHIYA Masatoshi