view src/pathdef.sh @ 18929:edacd1e922c0 v8.2.0025

patch 8.2.0025: repeated word in comment Commit: https://github.com/vim/vim/commit/fe72d08400d9064b3f959f1f62f279527e64835a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 20 19:07:00 2019 +0100 patch 8.2.0025: repeated word in comment Problem: Repeated word in comment. Solution: Remove one. (Rene Nyffenegger, closes https://github.com/vim/vim/issues/5384)
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 Dec 2019 19:15:04 +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: