summaryrefslogtreecommitdiff
path: root/src/beval.h
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.0652: freeing memory for balloon eval too earlyv8.1.0652Bram Moolenaar2018-12-281-0/+3
| | | | | | Problem: Freeing memory for balloon eval too early. Solution: Store the pointer in BalloonEval and free it later. (Yasuhiro Matsumoto, closes #3725)
* patch 8.1.0105: all tab stops are the samev8.1.0105Bram Moolenaar2018-06-231-1/+4
| | | | | | Problem: All tab stops are the same. Solution: Add the variable tabstop feature. (Christian Brabandt, closes #2711)
* patch 8.0.1321: can't build huge version with Athenav8.0.1321Bram Moolenaar2017-11-191-1/+0
| | | | | | Problem: Can't build huge version with Athena. (Mark Kelly) Solution: Move including beval.h to before structs.h. Include beval.pro like other proto files.
* patch 8.0.1314: build fails on Macv8.0.1314Bram Moolenaar2017-11-181-10/+13
| | | | | Problem: Build fails on Mac. (chdiza) Solution: Add #ifdef around GUI fields.
* patch 8.0.1312: balloon_show() only works in terminal when compiled with GUIv8.0.1312Bram Moolenaar2017-11-181-0/+83
Problem: balloon_show() only works in terminal when compiled with the GUI. Solution: Add FEAT_BEVAL_GUI and refactor to move common code out of the GUI specific file.