view src/pathdef.sh @ 26678:e16806237a70 v8.2.3868

patch 8.2.3868: Vim9: function test fails Commit: https://github.com/vim/vim/commit/1b5f7a6202406b7d7ac804960602350e42b8be80 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 21 13:30:42 2021 +0000 patch 8.2.3868: Vim9: function test fails Problem: Vim9: function test fails. Solution: Add missing changes. Add test for earlier patch.
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Dec 2021 14:45:03 +0100
parents 3fc0f57ecb91
children
line wrap: on
line source

#! /bin/sh
#
# pathdef.sh: adjust pathdef.c for auto/link.sed, if it exists
#
if test -s auto/link.sed; then
  cp auto/pathdef.c auto/pathdef.tmp
  sed -f auto/link.sed <auto/pathdef.tmp >auto/pathdef.c
  rm -f auto/pathdef.tmp
fi

# vim:set sw=2 et: