view src/pathdef.sh @ 29218:48b36959a4fc v8.2.5128

patch 8.2.5128: syntax disabled when using synID() in searchpair() skip expr Commit: https://github.com/vim/vim/commit/6f0cf62df97ee7c9d26b550adaf469be7fe1e09a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 19 12:27:45 2022 +0100 patch 8.2.5128: syntax disabled when using synID() in searchpair() skip expr Problem: Syntax highlighting disabled when using synID() in searchpair() skip expression and it times out. (Jaehwang Jung) Solution: Add the redrawtime_limit_set flag. (closes #10562)
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Jun 2022 13:30: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: