view src/pathdef.sh @ 12893:40ae30bc2691 v8.0.1323

patch 8.0.1323: mouse events in a terminal window may cause endless loop commit https://github.com/vim/vim/commit/73675fbc4810470f8935f05a3c16c14e0d5e737f Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 20 21:49:19 2017 +0100 patch 8.0.1323: mouse events in a terminal window may cause endless loop Problem: Mouse events in a terminal window may cause endless loop. Solution: Adjust position computation. Don't stuff a mouse event when coming from normal_cmd().
author Christian Brabandt <cb@256bit.org>
date Mon, 20 Nov 2017 22:00: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: