summaryrefslogtreecommitdiff
path: root/src/spell.h
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1521: reading past end of buffer when reading spellfilev8.2.1521Bram Moolenaar2020-08-241-0/+1
| | | | | | Problem: Reading past end of buffer when reading spellfile. (Yegappan Lakshmanan) Solution: Store the byte length and check for it.
* patch 8.1.2366: using old C style commentsv8.1.2366Bram Moolenaar2019-11-301-156/+156
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2081: the spell.c file is too bigv8.1.2081Bram Moolenaar2019-09-271-0/+16
| | | | | | Problem: The spell.c file is too big. Solution: Move the code for spell suggestions to a separate file. (Yegappan Lakshmanan, closes #4988)
* patch 8.1.1838: there is :spellwrong and :spellgood but not :spellrarev8.1.1838Bram Moolenaar2019-08-111-0/+4
| | | | | Problem: There is :spellwrong and :spellgood but not :spellrare. Solution: Add :spellrare. (Martin Tournoij, closes #4291)
* patch 8.1.0811: too many #ifdefsv8.1.0811Bram Moolenaar2019-01-241-4/+0
| | | | | Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, the final chapter.
* patch 8.1.0810: too many #ifdefsv8.1.0810Bram Moolenaar2019-01-241-34/+17
| | | | | Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, part 4.
* patch 8.0.1490: number of spell regions is spread out through the codev8.0.1490Bram Moolenaar2018-02-101-1/+4
| | | | | Problem: Number of spell regions is spread out through the code. Solution: Define MAXREGIONS.
* patch 7.4.2293v7.4.2293Bram Moolenaar2016-08-291-1/+1
| | | | | Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
* patch 7.4.2069v7.4.2069Bram Moolenaar2016-07-191-0/+319
Problem: spell.c is too big. Solution: Split it in spell file handling and spell checking.