view src/pathdef.sh @ 7224:42bf8902d4da v7.4.921

commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 10 20:52:04 2015 +0100 patch 7.4.921 Problem: Missing proto file update. (Randall W. Morris) Solution: Add the missing line for mch_ishidden.
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Nov 2015 21:00: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: