view src/pathdef.sh @ 18223:8a86e518fa42 v8.1.2106

patch 8.1.2106: no tests for dragging the mouse beyond the window Commit: https://github.com/vim/vim/commit/b4367b7fb65f6a88f76ef99f79342341af0b1017 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 1 14:19:07 2019 +0200 patch 8.1.2106: no tests for dragging the mouse beyond the window Problem: No tests for dragging the mouse beyond the window. Solution: Add a test. (Dominique Pelle, closes https://github.com/vim/vim/issues/5004)
author Bram Moolenaar <Bram@vim.org>
date Tue, 01 Oct 2019 14:30: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: