view src/pathdef.sh @ 21965:ddfb5f5b2ce5 v8.2.1532

patch 8.2.1532: compiler warning for conversion of size_t to long Commit: https://github.com/vim/vim/commit/2566054a7f406a6c9a082e7fd5f1597164668ca9 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 28 16:38:11 2020 +0200 patch 8.2.1532: compiler warning for conversion of size_t to long Problem: Compiler warning for conversion of size_t to long. Solution: Add type cast.
author Bram Moolenaar <Bram@vim.org>
date Fri, 28 Aug 2020 16:45:03 +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: