all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* emacs-w3m version incompatibility
@ 2011-01-06 14:39 Haines Brown
  2011-01-07  7:41 ` Jonathan Groll
       [not found] ` <mailman.0.1294386080.2099.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 3+ messages in thread
From: Haines Brown @ 2011-01-06 14:39 UTC (permalink / raw)
  To: help-gnu-emacs

I'm runing emacs 23.2.1 under Debian squeeze. When emacs loads I get the
debugging report of a LISP error: "Emacs-w3m of this version does not
support Emacs23; try the development version."

Installed is w3m-0.5.2-9 and the development version of the
interface for w3m, which is w3m-el-snapshot (version
1.4.400+0.20100725-1).

In .elisp I have the following lines:

(setq load-path (append load-path (list
      ...
      "~/elisp/w3m/"
)))

Some of the following lines may be redundant or unneeded, but should not
be a problem:

(require 'w3m-load)
(setq browse-url-browser-function 'w3m-browse-url)
(autoload 'w3m-browse-url "w3m" "Ask a WWW browser to show a URL." t)

(global-set-key "\C-xm" 'browse-url-at-point)
(setq w3m-use-cookies t)

(autoload 'browse-url-interactive-arg "browse-url")
(setq browse-url-browser-function 'w3m-browse-url
          browse-url-new-window-flag t)

(require 'mime-w3m)

(setq ffap-url-fetcher 'browse-url)

(setq mm-text-html-renderer 'true-w3m)
   (add-to-list 'mm-text-html-renderer-alist

(setq browse-url-browser-function 'w3m-browse-url
          browse-url-new-window-flag t)

(setq ffap-url-fetcher 'browse-url)

(setq mm-text-html-renderer 'true-w3m)
   (add-to-list 'mm-text-html-renderer-alist

(setq mm-text-html-renderer 'w3m)
 
Haines Brown


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: emacs-w3m version incompatibility
  2011-01-06 14:39 emacs-w3m version incompatibility Haines Brown
@ 2011-01-07  7:41 ` Jonathan Groll
       [not found] ` <mailman.0.1294386080.2099.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Groll @ 2011-01-07  7:41 UTC (permalink / raw)
  To: help-gnu-emacs

On Thu, 06 Jan 2011 09:39:14 -0500, Haines Brown <haines@HistoricalMaterialism.info> wrote:

> I'm runing emacs 23.2.1 under Debian squeeze. When emacs loads I get the
> debugging report of a LISP error: "Emacs-w3m of this version does not
> support Emacs23; try the development version."
> 
> Installed is w3m-0.5.2-9 and the development version of the
> interface for w3m, which is w3m-el-snapshot (version
> 1.4.400+0.20100725-1).
> 
> In .elisp I have the following lines:
> 
> (setq load-path (append load-path (list
>      ...
>      "~/elisp/w3m/"
> )))

[snip]

I've got working emacs-w3m on Debian.

In my case only w3m (0.5.2-2+lenny1) is installed and not w3m-el.
However, dependencies such as apel and flim were installed using apt.

emacs-w3m is from CVS:
http://emacs-w3m.namazu.org/

In .emacs I simply have
;;emacs-w3m
(add-to-list 'load-path
"/home/jonathan/lisp/w3m-cvs/share/emacs/site-lisp/w3m/")
(require 'w3m-load)
(require 'mime-w3m)

Note that my ~/lisp/w3m-cvs folder is the folder that I 'make
install'ed into. I wish I had saved a reference for the exact
.configure command that I used, but I recall that I had to specify the
path to the debian install of apel/flim and also specify my custom
install directory as lisp/w3m-cvs

If you want my ~/lisp/w3m-cvs folder then you can get it by cloning my
git repo: http://github.com/eyesonly/emacs-configuration (amd64 Debian
stable).


Cheers,
Jonathan
--
jjg: Jonathan J. Groll : groll co za
has_one { :blog => "http://bloggroll.com" }
Reine, reine gueux éveille
Gomme à gaine, en horreur, taie.



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: emacs-w3m version incompatibility
       [not found] ` <mailman.0.1294386080.2099.help-gnu-emacs@gnu.org>
@ 2011-01-10 18:16   ` Haines Brown
  0 siblings, 0 replies; 3+ messages in thread
From: Haines Brown @ 2011-01-10 18:16 UTC (permalink / raw)
  To: help-gnu-emacs

Jonathan Groll <lists@groll.co.za> writes:

> On Thu, 06 Jan 2011 09:39:14 -0500, Haines Brown <haines@HistoricalMaterialism.info> wrote:
>
>> I'm runing emacs 23.2.1 under Debian squeeze. When emacs loads I get the
>> debugging report of a LISP error: "Emacs-w3m of this version does not
>> support Emacs23; try the development version."
>> 
>> Installed is w3m-0.5.2-9 and the development version of the
>> interface for w3m, which is w3m-el-snapshot (version
>> 1.4.400+0.20100725-1).
>> 
>> In .elisp I have the following lines:
>> 
>> (setq load-path (append load-path (list
>>      ...
>>      "~/elisp/w3m/"
>> )))
>
> [snip]
>
> I've got working emacs-w3m on Debian.
>
> In my case only w3m (0.5.2-2+lenny1) is installed and not w3m-el.
> However, dependencies such as apel and flim were installed using apt.
>
> emacs-w3m is from CVS:
> http://emacs-w3m.namazu.org/
>
> In .emacs I simply have
> ;;emacs-w3m
> (add-to-list 'load-path
> "/home/jonathan/lisp/w3m-cvs/share/emacs/site-lisp/w3m/")
> (require 'w3m-load)
> (require 'mime-w3m)
>
> Note that my ~/lisp/w3m-cvs folder is the folder that I 'make
> install'ed into. I wish I had saved a reference for the exact
> .configure command that I used, but I recall that I had to specify the
> path to the debian install of apel/flim and also specify my custom
> install directory as lisp/w3m-cvs
>
> If you want my ~/lisp/w3m-cvs folder then you can get it by cloning my
> git repo: http://github.com/eyesonly/emacs-configuration (amd64 Debian
> stable).

Jonathan, your recommendations appreciated, but you are running Debian
Lenny, and I'm running squeeze. So my w3m, which is a squeeze binary, is
verion 0.5.2-9. 

On problem here is that I have the w3m deb binary installed and also the
w3m files separately in ~/elisp. I'm working backward to eliminate that
problem. 

In any case, the error message seems to refer to the w3m interface,
emacs-w3m. It sounds like this interface not up to support emacs 23, and
so I need the development version of the emacs-w3m interface. In fact, I
installed w3m-el-snapshot debian binary, which is the development
version of emacs-w3m that should be compatible with emacs23. You say
your w3m works with emacs without the interface, but everything I read
say the interface is needed. 

Both emacs-w3m and emacs.el are referred to as the w3m interface, and so
I'm left confused. Also, when I look at w3m-el, it has installation
directions that same compile; make install as if it were C source code,
but in fact it is Lisp code that does not need compiling. Simply put the
Lisp files into ~/elisp/w3m and told .elisp where to find them.

Haines Brown 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-10 18:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-06 14:39 emacs-w3m version incompatibility Haines Brown
2011-01-07  7:41 ` Jonathan Groll
     [not found] ` <mailman.0.1294386080.2099.help-gnu-emacs@gnu.org>
2011-01-10 18:16   ` Haines Brown

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.