view src/pathdef.sh @ 29404:87980a7936e7 v9.0.0044

patch 9.0.0044: typos in comments, wrapping lines Commit: https://github.com/vim/vim/commit/b8329db36a886355e6e9cb9986a3668fef78c438 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 6 13:31:28 2022 +0100 patch 9.0.0044: typos in comments, wrapping lines Problem: Typos in comments, wrapping lines. Solution: Adjust comments. Wrap lines.
author Bram Moolenaar <Bram@vim.org>
date Wed, 06 Jul 2022 14:45: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: