view src/pathdef.sh @ 11396:e9924d19ee37 v8.0.0583

patch 8.0.0583: fold test hangs on MS-Windows commit https://github.com/vim/vim/commit/b11c826ddc459813f9f991cdb8e8736b686a6328 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 23 16:48:20 2017 +0200 patch 8.0.0583: fold test hangs on MS-Windows Problem: Fold test hangs on MS-Windows. Solution: Avoid overflow in compare.
author Christian Brabandt <cb@256bit.org>
date Sun, 23 Apr 2017 17:00:04 +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: