summaryrefslogtreecommitdiff
path: root/src/alloc.h
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.1427v7.4.1427Bram Moolenaar2016-02-271-1/+1
| | | | | Problem: Trailing comma in enums is not ANSI C. Solution: Remove the trailing commas.
* patch 7.4.1096v7.4.1096Bram Moolenaar2016-01-151-0/+1
| | | | | | Problem: Need several lines to verify a command produces an error. Solution: Add assert_fails(). (suggested by Nikolay Pavlov) Make the quickfix alloc test actually work.
* patch 7.4.1073v7.4.1073Bram Moolenaar2016-01-091-0/+20
Problem: Alloc_id depends on numbers, may use the same one twice. It's not clear from the number what it's for. Solution: Use an enum. Add a function to lookup the enum value from the name.