view src/pathdef.sh @ 25585:10edc624b171 v8.2.3329

patch 8.2.3329: v_lock not set when getting value of environment variable Commit: https://github.com/vim/vim/commit/16e63e6d353c8b7337470644ceac02dc5e569db9 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 11 16:47:26 2021 +0200 patch 8.2.3329: v_lock not set when getting value of environment variable Problem: v_lock not set when getting value of environment variable. Solution: Set v_lock to zero.
author Bram Moolenaar <Bram@vim.org>
date Wed, 11 Aug 2021 17:00: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: