summaryrefslogtreecommitdiff
path: root/src/kword_test.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0559: clearing a struct is verbosev8.2.0559Bram Moolenaar2020-04-121-1/+1
| | | | | Problem: Clearing a struct is verbose. Solution: Define and use CLEAR_FIELD() and CLEAR_POINTER().
* patch 8.2.0056: execution stack is incomplete and inefficientv8.2.0056Bram Moolenaar2019-12-291-0/+1
| | | | | | Problem: Execution stack is incomplete and inefficient. Solution: Introduce a proper execution stack and use it instead of sourcing_name/sourcing_lnum. Create a string only when used.
* patch 8.1.2388: using old C style commentsv8.1.2388Bram Moolenaar2019-12-041-3/+3
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.0806: too many #ifdefsv8.1.0806Bram Moolenaar2019-01-241-4/+0
| | | | | Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, part 2.
* patch 8.0.0252: not properly recognizing word characters between 128 and 255v8.0.0252Bram Moolenaar2017-01-281-0/+85
Problem: Characters below 256 that are not one byte are not always recognized as word characters. Solution: Make vim_iswordc() and vim_iswordp() work the same way. Add a test for this. (Ozaki Kiichi)