view src/pathdef.sh @ 30318:1358585dde2b v9.0.0495

patch 9.0.0495: closure doesn't work properly in nested loop Commit: https://github.com/vim/vim/commit/dbbb02bc770646776a04122ff58313d170873e67 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 18 12:00:21 2022 +0100 patch 9.0.0495: closure doesn't work properly in nested loop Problem: Closure doesn't work properly in nested loop. Solution: Save variables up to the outer loop.
author Bram Moolenaar <Bram@vim.org>
date Sun, 18 Sep 2022 13:15:06 +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: