view src/pathdef.sh @ 8958:12392eb2923a v7.4.1765

commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 21 14:05:23 2016 +0200 patch 7.4.1765 Problem: Undo options are not together in the options window. Solution: Put them together. (Gary Johnson)
author Christian Brabandt <cb@256bit.org>
date Thu, 21 Apr 2016 14:15:06 +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: