view src/pathdef.sh @ 23582:b875bbd517a6 v8.2.2333

patch 8.2.2333: Vim9: warning for uninitialized variable Commit: https://github.com/vim/vim/commit/cb6cbf29e97b7abdeb1e6cbdc5e735f5b55e97a1 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 12 17:17:01 2021 +0100 patch 8.2.2333: Vim9: warning for uninitialized variable Problem: Vim9: warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize "res".
author Bram Moolenaar <Bram@vim.org>
date Tue, 12 Jan 2021 17:30:05 +0100
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: