Spell check for emacs.

This commit is contained in:
emmajane 2003-12-08 03:06:44 +00:00
parent 294f69f3f9
commit f04c57c0b7
1 changed files with 20 additions and 0 deletions

View File

@ -189,4 +189,24 @@
</itemizedlist>
</section>
<section id="emacs-spell">
<title>Spell Checking in Emacs</title>
<para>
Emacs can be configured to use <application>aspell</application>
by adding the following to your <filename>~/.emacs</filename> file.
Thanks to <ulink url="http://www.ertius.org">Rob Weir</ulink> for
this configuration information.
</para>
<programlisting>
;; Use aspell
(setq-default ispell-program-name "aspell")
;;Setup some dictionary languages
(setq ispell-dictionary "british")
(setq flyspell-default-dictionary "british")
</programlisting>
</section>
</section>