From 2b7c53be421b6d733a161bb5b11cfa54090db519 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Thu, 6 Aug 2026 19:33:43 -0400 Subject: [PATCH] build(vim-patch): runnvim should make redir_test_to_null n/a Prior patches for it are marked n/a. Target v8.2.2630 . --- scripts/vim-patch.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index fb5b5a6268..472c4c6c58 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -942,6 +942,12 @@ is_na_patch() { test "$HUNK_NUM_FINAL" -ne 0 && return 1 fi ;; + src/testdir/Makefile) + HUNKS=$(git -C "${VIM_SOURCE_DIR}" diff-tree --no-commit-id -r -b -U0 \ + '-IREDIR_TEST_TO_NULL = ' \ + "$patch" -- "${file}") + test -n "$HUNKS" && return 1 + ;; src/testdir/Make*.mak) HUNKS=$(git -C "${VIM_SOURCE_DIR}" diff-tree --no-commit-id -r -b -U0 \ '-I\stest8[67]\.out \\$' \