view src/pathdef.sh @ 15320:de8dc397cd2a v8.1.0668

patch 8.1.0668: no test for overstrike mode in the command line commit https://github.com/vim/vim/commit/c0676bab92bd6488e17d05a4a70dfff993ef524e Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 31 21:03:02 2018 +0100 patch 8.1.0668: no test for overstrike mode in the command line Problem: No test for overstrike mode in the command line. Solution: Add a test. (Dominique Pelle, closes https://github.com/vim/vim/issues/3742)
author Bram Moolenaar <Bram@vim.org>
date Mon, 31 Dec 2018 21:15:05 +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: