view src/pathdef.sh @ 21618:9ab43576a13b v8.2.1359

patch 8.2.1359: Vim9: cannot assign to / register in Vim9 script Commit: https://github.com/vim/vim/commit/83144546488b544a1fe4e2a4f8be954b98c696fc Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 2 20:40:43 2020 +0200 patch 8.2.1359: Vim9: cannot assign to / register in Vim9 script Problem: Vim9: cannot assign to / register in Vim9 script. Solution: Adjust check for assignment in Vim9 script. (closes https://github.com/vim/vim/issues/6567)
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Aug 2020 20:45:04 +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: