
// if this function returns non-zero the word is not a spell error

int spellx_fix(int user, int file, int language, int spare, string & word)
{
 if(word/"l'"==0)                               // if the word starts with l'
 {
  return(checkstring(file,language,word<<2));   // then see if the word less the l' is in
 }                                              // the dictionary

 return(0);
}



void main(void)
{
 int EVENT_SPELLCHECK=0x30C;

 addeventhandler(EVENT_SPELLCHECK, 0, "spellx_fix");


}