view src/pathdef.sh @ 28873:c3570bdc93eb v8.2.4959

patch 8.2.4959: using NULL regexp program Commit: https://github.com/vim/vim/commit/b62dc5e7825bc195efe3041d5b3a9f1528359e1c Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 15 14:50:12 2022 +0100 patch 8.2.4959: using NULL regexp program Problem: Using NULL regexp program. Solution: Check for regexp program becoming NULL in more places.
author Bram Moolenaar <Bram@vim.org>
date Sun, 15 May 2022 16: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: