[mew-int 01433] Re: A french page about Mew
Tatsuya Kinoshita
tats at example.com
Mon May 26 23:48:50 JST 2003
On May 26, 2003, [mew-int 01432],
Serge Basterot <serge.basterot at example.com> wrote:
> I made a web page for french newbies. I describe how to configure :
> http://serge.basterot.free.fr/ll/mew.html
| .emacs :
|
| (require 'w3m)
|
| .mew.el :
| (condition-case nil
| (require 'mew-w3m)
| (file-error nil))
| ;; ici faites attention ? bien ajustez le chemin de l'executable !
| ;; faites d'abord un coup de 'which w3m' pour 黎re s?r !
| (setq w3m-command "/usr/local/bin/w3m")
| (setq w3m-type 'w3m)
Emacs-w3m will be confused if `w3m-command' and `w3m-type' are
modified after loading `w3m'.
Instead, I recommend this:
.emacs:
;;(setq w3m-command "/usr/local/bin/w3m") ;; should be before loading `w3m'
(condition-case nil
(require 'w3m)
(file-error nil))
.mew.el:
(condition-case nil
(require 'mew-w3m)
(file-error nil))
| (require 'ucs-tables) ;; gnus/contrib/ucs-tables.el from cvs.gnus.org
| (unify-8859-on-encoding-mode 1)
| (unify-8859-on-decoding-mode 1)
If you want to use latin-iso8859-x rather than mule-unicode-x,
use `(unify-8859-on-decoding-mode -1)'.
| Mew en version 4.x :
| ;; charset latin pour Mew
| ;; on peut choisir le charset latin-1 ou latin-9 en
| ;; pla軋nt iso-8859-1 ou iso-8859-15
|
| (setq mew-charset-latin "iso-8859-1")
The `mew-charset-latin' variable are provided by Mew 3.x (3.1.50
or later) as well. (`my-mew-nonascii' is not recommendable.)
--
Tatsuya Kinoshita
More information about the Mew-int
mailing list