summaryrefslogtreecommitdiffstats
path: root/src/gui_at_fs.c
AgeCommit message (Collapse)Author
2020-11-01patch 8.2.1932: compiler warnings when building with Athena GUIv8.2.1932Bram Moolenaar
Problem: Compiler warnings when building with Athena GUI. Solution: Fix function signatures.
2019-12-01patch 8.1.2380: using old C style commentsv8.1.2380Bram Moolenaar
Problem: Using old C style comments. Solution: Use // comments where appropriate.
2019-05-24patch 8.1.1384: using "int" for alloc() often results in compiler warningsv8.1.1384Bram Moolenaar
Problem: Using "int" for alloc() often results in compiler warnings. Solution: Use "size_t" and remove type casts. Remove alloc_check(), Vim only works with 32 bit ints anyway.
2019-01-13patch 8.1.0743: giving error messages is not flexiblev8.1.0743Bram Moolenaar
Problem: Giving error messages is not flexible. Solution: Add semsg(). Change argument from "char_u *" to "char *", also for msg() and get rid of most MSG macros. (Ozaki Kiichi, closes #3302) Also make emsg() accept a "char *" argument. Get rid of an enormous number of type casts.
2018-09-30patch 8.1.0443: unnecessary static function prototypesv8.1.0443Bram Moolenaar
Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
2016-08-29patch 7.4.2293v7.4.2293Bram Moolenaar
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
2016-07-01patch 7.4.1975v7.4.1975Bram Moolenaar
Problem: On MS-Windows large files (> 2Gbyte) cause problems. Solution: Use "off_T" instead of "off_t". Use "stat_T" instead of "struct stat". Use 64 bit system functions if available. (Ken Takata)
2016-01-30patch 7.4.1209v7.4.1209Bram Moolenaar
Problem: Can't build with Athena. Solution: Fix function declarations.
2016-01-30patch 7.4.1207v7.4.1207Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-29patch 7.4.1197v7.4.1197Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2013-06-27updated for version 7.3.1255v7.3.1255Bram Moolenaar
Problem: Clang warnings when building with Athena. Solution: Add type casts. (Dominique Pelle)
2010-06-06Avoid compiler warnings.Bram Moolenaar
2009-05-21updated for version 7.2-184v7.2.184Bram Moolenaar
2006-05-13updated for version 7.0-015v7.0.015Bram Moolenaar
2005-07-09updated for version 7.0106Bram Moolenaar
2004-06-13updated for version 7.0001v7.0001Bram Moolenaar