view src/pathdef.sh @ 14808:3d0b6e2a3a01 v8.1.0416

patch 8.1.0416: sort doesn't report deleted lines commit https://github.com/vim/vim/commit/b0e982bf05feb27eddb5f809b052c1137f4d4add Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 21 12:46:22 2018 +0200 patch 8.1.0416: sort doesn't report deleted lines Problem: Sort doesn't report deleted lines. Solution: Call msgmore(). (Christian Brabandt, closes https://github.com/vim/vim/issues/3454)
author Christian Brabandt <cb@256bit.org>
date Fri, 21 Sep 2018 13:00: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: