1

I am trying to configure and use w3m with emacs 23. I have w3m on my system and have downloaded and make/install emacs-w3m 1.4.4. However, when I put (require 'w3m-load) into my .emacs file it throws an error on emacs startup:

File error: Cannot open load file, w3m-load

I am not sure what I am doing wrong. Any help would be appreciated.

Mogsdad
  • 40,814
  • 19
  • 140
  • 246
forTruce
  • 844
  • 1
  • 7
  • 17

1 Answers1

1

Well, I thought I had tried it all and it ends up being a pretty embarrassing fix. I didn't have the load path added in my .emacs file so it didnt know where to find w3m-load.

(add-to-list 'load-path "PATH TO w3m")
forTruce
  • 844
  • 1
  • 7
  • 17
  • You should mark this as answered :) - You can also explicitly specify the `w3m` location. – ocodo Mar 25 '13 at 22:47