summaryrefslogtreecommitdiff
path: root/src/spellsuggest.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0041: leaking memory when selecting spell suggestionv8.2.0041Bram Moolenaar2019-12-251-5/+4
| | | | | Problem: Leaking memory when selecting spell suggestion. Solution: Free previous value at the right time.
* patch 8.2.0039: memory access error when "z=" has no suggestionsv8.2.0039Bram Moolenaar2019-12-251-1/+2
| | | | | Problem: Memory access error when "z=" has no suggestions. Solution: Check for negative index.
* patch 8.1.2243: typos in commentsv8.1.2243Bram Moolenaar2019-11-021-1/+1
| | | | | | Problem: Typos in comments. Solution: Fix the typos. (Dominique Pelle, closes #5160) Also adjust formatting a bit.
* patch 8.1.2120: some MB_ macros are more complicated than necessaryv8.1.2120Bram Moolenaar2019-10-061-14/+14
| | | | | | Problem: Some MB_ macros are more complicated than necessary. (Dominique Pelle) Solution: Simplify the macros. Expand inline.
* patch 8.1.2081: the spell.c file is too bigv8.1.2081Bram Moolenaar2019-09-271-0/+4452
Problem: The spell.c file is too big. Solution: Move the code for spell suggestions to a separate file. (Yegappan Lakshmanan, closes #4988)