# HG changeset patch # User Bram Moolenaar # Date 1591122604 -7200 # Node ID a72e3f26a36111908456855f23bdbab7c76b621b # Parent 0e498c32ebadeff9c81d302096648c82a4d2ca3e patch 8.2.0885: "make shadow" does not link new lua test dir Commit: https://github.com/vim/vim/commit/3ac498c8a1c3570c296093a5d9425b2a3a7cdb29 Author: Bram Moolenaar Date: Tue Jun 2 20:25:36 2020 +0200 patch 8.2.0885: "make shadow" does not link new lua test dir Problem: "make shadow" does not link new lua test dir. Solution: Also link testdir/testluaplugin. (Elimar Riesebieter) diff --git a/src/Makefile b/src/Makefile --- a/src/Makefile +++ b/src/Makefile @@ -2986,7 +2986,9 @@ shadow: runtime pixmaps ../../testdir/samples \ ../../testdir/dumps \ ../../testdir/test83-tags? \ - ../../testdir/*.ok . + ../../testdir/*.ok \ + ../../testdir/testluaplugin \ + . # After updating Vim new files may have been created, use this to refresh the # symbolic links in the shadow directory. This isn't guaranteed to catch all diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 885, +/**/ 884, /**/ 883,