summaryrefslogtreecommitdiffstats
path: root/.gitignore
AgeCommit message (Collapse)Author
2017-03-07patch 8.0.0428: git and hg see new files after running testsv8.0.0428Bram Moolenaar
Problem: Git and hg see new files after running tests. (Manuel Ortega) Solution: Add the generated file to .hgignore (or .gitignore). Delete the resulting verbose file. (Christian Brabandt) Improve dependency on opt_test.vim. Reset the 'more' option.
2017-01-28patch 8.0.0252: not properly recognizing word characters between 128 and 255v8.0.0252Bram Moolenaar
Problem: Characters below 256 that are not one byte are not always recognized as word characters. Solution: Make vim_iswordc() and vim_iswordp() work the same way. Add a test for this. (Ozaki Kiichi)
2016-12-02Add objects dirstamp to gitignore.Bram Moolenaar
2016-07-28Update gitignore for new test binary. (Oyvind Holm, closes #954)Bram Moolenaar
2016-04-02Add json_test to gitignore (Hirohito Higashi)Bram Moolenaar
2016-01-02Update ignored files. Delete file that should have been deleted by patch ↵Bram Moolenaar
7.4.1016.
2016-01-01Update gitignore for files created when running tests.Bram Moolenaar
2015-12-29patch 7.4.995v7.4.995Bram Moolenaar
Problem: gdk_pixbuf_new_from_inline() is deprecated. Solution: Generate auto/gui_gtk_gresources.c. (Kazunobu Kazunobu, closes #507)
2015-02-27updated for version 7.4.647v7.4.647Bram Moolenaar
Problem: After running the tests on MS-Windows many files differ from their originals as they were checked out. Solution: Use a temp directory for executing the tests. (Ken Takata, Taro Muraoka)
2014-07-09updated for version 7.4.356v7.4.356Bram Moolenaar
Problem: Mercurial does not ignore memfile_test. (Daniel Hahler) Solution: Add memfile_test to ignored files, remove trailing spaces.
2014-03-19updated for version 7.4.208v7.4.208Bram Moolenaar
Problem: Mercurial picks up some files that are not distributed. Solution: Add patterns to the ignore list. (Cade Forester)
2014-01-10updated for version 7.4.141v7.4.141Bram Moolenaar
Problem: Problems when building with Borland: st_mode is signed short; can't build with Python; temp files not ignored by Mercurial; building with DEBUG doesn't define _DEBUG. Solution: Fix the problems. (Ken Takata)
2013-06-24updated for version 7.3.1239v7.3.1239Bram Moolenaar
Problem: Can't build with Python and MSVC10. Solution: Move #if outside of macro. (Taro Muraoka)
2013-06-16updated for version 7.3.1212v7.3.1212Bram Moolenaar
Problem: "make test" on MS-Windows does not report failure like Unix does. Solution: Make it work like on Unix. (Taro Muraoka)
2013-06-11updated for version 7.3.1166v7.3.1166Bram Moolenaar
Problem: Loading Python modules is not tested. Solution: Enable commented-out tests, add missing files. (ZyX)
2012-09-21updated for version 7.3.667v7.3.667Bram Moolenaar
Problem: Unused variables in Perl interface. Solution: Adjust #ifdefs.
2012-09-18updated for version 7.3.662v7.3.662Bram Moolenaar
Problem: Can't build Ruby interface with Ruby 1.9.3. Solution: Add missing functions. (V. Ondruch)
2012-05-18Ignore file generated by tests.Bram Moolenaar
2011-02-15updated for version 7.3.122v7.3.122Bram Moolenaar
Problem: Having auto/config.mk in the repository causes problems. Solution: Remove auto/config.mk from the distribution. In the toplevel Makefile copy it from the "dist" file.
2011-01-22updated for version 7.3.103v7.3.103Bram Moolenaar
Problem: Changing 'fileformat' and then using ":w" in an empty file sets the 'modified' option. Solution: In unchanged() don't ignore 'ff' for an empty file.
2010-05-28Runtime file updates.Bram Moolenaar
2010-01-20Add more pathdef.c to .hgignore.Bram Moolenaar
2010-01-12updated for version 7.2.328v7.2.328Bram Moolenaar
Problem: has("win64") does not return 1 on 64 bit MS-Windows version. Solution: Also check for _WIN64 besides WIN64.
2010-01-10Add an .hgignore file (suggested by Mike Williams).Bram Moolenaar