view src/pathdef.sh @ 15322:c6c306c5027f v8.1.0669

patch 8.1.0669: the ex_sign() function is too long commit https://github.com/vim/vim/commit/a355652ea5b0c1633e8126ad9af2d970e05f4e1a Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 31 22:02:29 2018 +0100 patch 8.1.0669: the ex_sign() function is too long Problem: The ex_sign() function is too long. Solution: Refactor the function. Add a bit more testing. (Yegappan Lakshmanan, closes #3745)
author Bram Moolenaar <Bram@vim.org>
date Mon, 31 Dec 2018 22:15:06 +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: