view src/pathdef.sh @ 30355:c0be6563fa39 v9.0.0513

patch 9.0.0513: may not be able to use a pattern ad the debug prompt Commit: https://github.com/vim/vim/commit/9781d9c00517a67c44b50b040cca2c5804daf15c Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 20 13:51:25 2022 +0100 patch 9.0.0513: may not be able to use a pattern ad the debug prompt Problem: May not be able to use a pattern ad the debug prompt. Solution: Temporarily disable the timeout. (closes https://github.com/vim/vim/issues/11164)
author Bram Moolenaar <Bram@vim.org>
date Tue, 20 Sep 2022 15:00:04 +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: