view src/pathdef.sh @ 34788:49637bd5c863 v9.1.0268

patch 9.1.0268: Two tests in test_filechanged.vim are slow Commit: https://github.com/vim/vim/commit/83cd2c7bf0c12f05d747dd5fd6abfe103948bf12 Author: zeertzjq <zeertzjq@outlook.com> Date: Fri Apr 5 20:05:11 2024 +0200 patch 9.1.0268: Two tests in test_filechanged.vim are slow Problem: Two tests in test_filechanged.vim are slow. Solution: Sleep for shorter if the +nanotime feature is available. (zeertzjq) closes: #14418 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Fri, 05 Apr 2024 20:15:05 +0200
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: