view src/pathdef.sh @ 24264:db5eaad456cc v8.2.2673

patch 8.2.2673: Vim9: script-local funcref can have lower case name Commit: https://github.com/vim/vim/commit/3215466af9abfc9fbbfba81d166d625176993486 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 28 21:14:06 2021 +0200 patch 8.2.2673: Vim9: script-local funcref can have lower case name Problem: Vim9: script-local funcref can have lower case name. Solution: Require an upper case name.
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Mar 2021 21:15:02 +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: