view src/pathdef.sh @ 17928:34639bba19b0 v8.1.1960

patch 8.1.1960: fold code is spread out Commit: https://github.com/vim/vim/commit/db022f3ffb57c5ff4b97b4e93a994d11e4c10466 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 1 17:52:32 2019 +0200 patch 8.1.1960: fold code is spread out Problem: Fold code is spread out. Solution: Move fold functions to fold.c.
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Sep 2019 18:00: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: