view src/pathdef.sh @ 12761:2c502179c75d v8.0.1258

patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported commit https://github.com/vim/vim/commit/52a2f0f1da4e554a81beb45211a9d09afffde595 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 4 15:16:56 2017 +0100 patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supported Problem: 'ttymouse' is set to "sgr" even though it's not supported. (Gary Johnson) Solution: Adjust #ifdef
author Christian Brabandt <cb@256bit.org>
date Sat, 04 Nov 2017 15:30:05 +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: