view src/pathdef.sh @ 22157:ba81f5e300b7 v8.2.1628

patch 8.2.1628: Vim9: cannot pass "true" to timer_paused() Commit: https://github.com/vim/vim/commit/418155def2aa45afd7fc034db341dc874b00af3a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 6 18:39:38 2020 +0200 patch 8.2.1628: Vim9: cannot pass "true" to timer_paused() Problem: Vim9: cannot pass "true" to timer_paused(). Solution: Use tv_get_bool(). (closes https://github.com/vim/vim/issues/6891)
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Sep 2020 18: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: