PxPlus User Forum

Main Board => Discussions => Programming => Topic started by: Shawn@EVENT on October 03, 2018, 09:17:47 AM

Title: Spell check issue
Post by: Shawn@EVENT on October 03, 2018, 09:17:47 AM
Spell check seems to not be working if the string getting checked starts with "test"

Consider the following where the value of  NOTES$="testjkshdjas"

 LET %SPELL_SITE$="|aspell -a --lang=@@",%SPELL_LANG$="en"
 CALL "*plus/spell/spell",0,LANGCODE$,NOTES$,%SPELL_SITE$

I am getting the popup stating No spelling errors found,Spell check complete
Title: Re: Spell check issue
Post by: Mike King on October 03, 2018, 10:39:54 AM
This appears to be something with aspell itself as generally for almost any sequence of characters aspell will have some suggested replacement words yet for some reason it simply rejects words starting with TEST.

While cannot fix aspell itself, we have made some changes that we think will address this issue.

Please download and try replacing *plus/spell/spell with the file found in https://home.pvxplus.com/downloads/misc/spell
Title: Re: Spell check issue
Post by: Shawn@EVENT on October 04, 2018, 10:41:04 PM
Thanks, that worked :)