[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: wanderlust install question
On Fri, 20 Dec 2013 10:46:38 -0500
Thomas Narten wrote:
> Hi
>
> Would really like to try wanderlust, but have been stymied so far in
> getting it running.
>
> Instructions below got me to where I can at least run wanderlust, but
> among other things, it doesn't seem to install the documentation
> (infofiles), which would hopefully help me figure out what I'm messing
> up.
Did you run 'make info'? Then you can add the directory to the
INFOPATH environment variable or expand Info-additional-directory-list.
But you can also run 'texi2pdf wl.texi' in the doc directory of wl and
then enjoy wl.pdf.
> Did the above, but when trying to run wl, it complains "wl-news" not
> found (or some such). Turns out that the file "wl/wl-news.el" is
> misnamed as "wl-news.el.in". After fixing that, I can run wl, but
> don't seem to have wanderlust documentation available.
The file wl-news.el is created when you compile wl.
Otherwise the following patch is required to get rid of the error:
--- a/wl/wl.el
+++ b/wl/wl.el
@@ -59,7 +59,7 @@
(require 'wl-action)
(require 'wl-thread)
(require 'wl-address)
-(require 'wl-news)
+(require 'wl-news nil t)
(wl-draft-mode-setup)
(require 'wl-draft)
@@ -740,7 +740,8 @@ Entering Plugged mode calls the value of `wl-plugged-mode-hook'."
(elmo-define-signal-filter (listener folder old-number new-number)
(and folder
(string= (elmo-folder-name-internal folder) wl-draft-folder))))
- (wl-news-check)
+ (when (featurep 'wl-news)
+ (wl-news-check))
(setq wl-init t)
;; This hook may contain the functions `wl-plugged-init-icons' and
;; `wl-biff-init-icons' for reasons of system internal to accord
> (And mime doesn't seem to be working by default, as I'm just seeing
> ascii, but that's another story.)
You have to install and setup w3m and emacs-w3m to display html
e-mails.
--
Herbert