summaryrefslogtreecommitdiffstats
path: root/src/beval.h
AgeCommit message (Collapse)Author
2018-12-28patch 8.1.0652: freeing memory for balloon eval too earlyv8.1.0652Bram Moolenaar
Problem: Freeing memory for balloon eval too early. Solution: Store the pointer in BalloonEval and free it later. (Yasuhiro Matsumoto, closes #3725)
2018-06-23patch 8.1.0105: all tab stops are the samev8.1.0105Bram Moolenaar
Problem: All tab stops are the same. Solution: Add the variable tabstop feature. (Christian Brabandt, closes #2711)
2017-11-19patch 8.0.1321: can't build huge version with Athenav8.0.1321Bram Moolenaar
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.
2017-11-18patch 8.0.1314: build fails on Macv8.0.1314Bram Moolenaar
Problem: Build fails on Mac. (chdiza) Solution: Add #ifdef around GUI fields.
2017-11-18patch 8.0.1312: balloon_show() only works in terminal when compiled with GUIv8.0.1312Bram Moolenaar
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.