summaryrefslogtreecommitdiffstats
path: root/src/beval.h
AgeCommit message (Collapse)Author
2020-04-23patch 8.2.0622: Haiku: GUI does not compilev8.2.0622Bram Moolenaar
Problem: Haiku: GUI does not compile. Solution: Various fixes. (Emir Sari, closes #5961)
2020-01-26patch 8.2.0156: various typos in source files and testsv8.2.0156Bram Moolenaar
Problem: Various typos in source files and tests. Solution: Fix the typos. (Emir Sari, closes #5532)
2019-11-30patch 8.1.2366: using old C style commentsv8.1.2366Bram Moolenaar
Problem: Using old C style comments. Solution: Use // comments where appropriate.
2019-05-09patch 8.1.1303: not possible to hide a balloonv8.1.1303Bram Moolenaar
Problem: Not possible to hide a balloon. Solution: Hide the balloon when balloon_show() is called with an empty string or list. Add balloon_gettext().
2019-02-17patch 8.1.0941: macros for MS-Windows are inconsistentv8.1.0941Bram Moolenaar
Problem: Macros for MS-Windows are inconsistent, using "32", "3264 and others. Solution: Use MSWIN for all MS-Windows builds. Use FEAT_GUI_MSWIN for the GUI build. (Hirohito Higashi, closes #3932)
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.