* installation
  Simply put it all in your load path, add
  require ("ispell_init");
  to your .jedrc, and any keybindings you want. And set up your dictionaries.
* dictionaries
  On Debian the dictionaries should be automatically initialised by the
  (next version of the) dictionaries_common package.
  On other systems, use ispell_add_dictionary().
  
hash_name: the name by which ispell knows the language (a .hash file in
  /usr/lib/ispell)

letters: letters that constitute words. For latin1 languages, the default
  should be all right.

otherchars: chars that may appear inside words, or outside words in
  English it's "'", in other languages it may be "-'". Old versions of
  dictionaries_common don't provide this argument, so you have to
  update.

wordlist: just needed for ispell_complete, it would be annoying to
  have to set the language for ispell AND a wordlist for completions.
  For Debian users, this one is not automatically filled in.

ext_char: something that's put in the ispell command line after a
  "-T" flag and should match a stringtype defined in
  /usr/lib/ispell/(language).aff.  So it's not the same as Emacs
  ispell's extended-character-mode or character-set.  If you're
  European try latin1.  Dutch doesn't seem to need it but in German
  an '' will be turned into an '"a' without it. This may conflict
  with -T troff or something, I don't use troff or TeX so it's not my
  problem.

options: any other args you want to pass.

I have ispell 3.1.20.

* ispell
  If you want to check email text in JED, this hook will skip quoted lines

define ispell_is_quote_hook()
{
   push_spot_bol;
   skip_white;
   looking_at_char('>');
   pop_spot;
   if(dup)
     eol;
   not();
}

define mail_mode_hook()
{
   define_blocal_var("ispell_region_hook", &ispell_is_quote_hook);
}

* vispell
  Don't bytecompile it unless you ONLY use jed, or xjed.
* look
  To bind ispell_complete to M-tab:
  setkey ("ispell_complete", "	");
  I will probably rewrite this to use the external look program, as big
  wordlists take long to load and use a lot of memory
* license
  This package is GPL'ed. No warranty.
  You can get the latest version at http://jedmodes.sf.net
* thanks
  Kudos to Gnter Milde, Rafael Laboissiere, Agustin Martin and JED.
