view src/pathdef.sh @ 32772:0dc750a24875 v9.0.1703

patch 9.0.1703: Vim9 Calling a method in an extended class fails Commit: https://github.com/vim/vim/commit/74cc13cc402fa4df9033fbbc0643b1b403525950 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sun Aug 13 17:41:26 2023 +0200 patch 9.0.1703: Vim9 Calling a method in an extended class fails Problem: Vim9 Calling a method in an extended class fails Solution: use method index directly closes: #12778 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
author Christian Brabandt <cb@256bit.org>
date Sun, 13 Aug 2023 18:00: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: