view src/pathdef.sh @ 15894:46adcb6e27d7 v8.1.0953

patch 8.1.0953: a very long file is truncated at 2^31 lines commit https://github.com/vim/vim/commit/c9629251a634d4f5988c8162ba8249026d1af687 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 19 21:24:54 2019 +0100 patch 8.1.0953: a very long file is truncated at 2^31 lines Problem: A very long file is truncated at 2^31 lines. Solution: Use LONG_MAX for MAXLNUM. (Dominique Pelle, closes https://github.com/vim/vim/issues/4011)
author Bram Moolenaar <Bram@vim.org>
date Tue, 19 Feb 2019 21:30:08 +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: