view src/pathdef.sh @ 30681:a7f174d34f85 v9.0.0675

patch 9.0.0675: search test screendump is outdated Commit: https://github.com/vim/vim/commit/851907a7ab2db84e1e93c3f7ef417cc46c5c19c7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 6 16:33:15 2022 +0100 patch 9.0.0675: search test screendump is outdated Problem: Search test screendump is outdated. Solution: Update the screendump for improved display.
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 Oct 2022 17:45: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: