view src/pathdef.sh @ 31369:03da3e28883e v9.0.1018

patch 9.0.1018: suspend test still fails on Mac OS Commit: https://github.com/vim/vim/commit/7155fb6614f45a4e573bbfca23b5d150604ad506 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 6 09:11:39 2022 +0000 patch 9.0.1018: suspend test still fails on Mac OS Problem: Suspend test still fails on Mac OS. Solution: Make 'keyprotocol' empty.
author Bram Moolenaar <Bram@vim.org>
date Tue, 06 Dec 2022 10:15:06 +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: