On Tue, Mar 7, 2017 at 9:27 PM, Bram Moolenaar <[email protected]> wrote: > > Patch 8.0.0428 > 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. > Files: .hgignore, src/gen_opt_test.vim, src/testdir/gen_opt_test.vim, > src/Makefile, src/testdir/Make_all.mak, src/testdir/Makefile, > src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, > Filelist
This patch added one line to .gitignore but (unlike what the commit description says) forgot to add the corresponding line to .hgignore. I am suggesting the additional attached patch. Best regards, Tony. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
# HG changeset patch # Parent 4f47b745041db78df2cade877d8f788c7b20c1f9 diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -75,16 +75,17 @@ src/testdir/lua.vim src/testdir/small.vim src/testdir/tiny.vim src/testdir/test*.out src/testdir/test*.failed src/testdir/test.log src/testdir/dostmp/* src/testdir/messages src/testdir/viminfo +src/testdir/opt_test.vim src/memfile_test
