summaryrefslogtreecommitdiff
path: root/src/spellfile.c
AgeCommit message (Collapse)Author
2017-03-12patch 8.0.0451: some macros are in lower caseBram Moolenaar
Problem: Some macros are in lower case. Solution: Make a few more macros upper case. Avoid lower case macros use an argument twice.
2017-02-26patch 8.0.0376: size computations in spell file reading are offBram Moolenaar
Problem: Size computations in spell file reading are not exactly right. Solution: Make "len" a "long" and check with LONG_MAX.
2017-02-09patch 8.0.0322: possible overflow with corrupted spell fileBram Moolenaar
Problem: Possible overflow with spell file where the tree length is corrupted. Solution: Check for an invalid length (suggested by shqking)
2016-08-29patch 7.4.2293Bram Moolenaar
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
2016-07-19patch 7.4.2069Bram Moolenaar
Problem: spell.c is too big. Solution: Split it in spell file handling and spell checking.