view src/pathdef.sh @ 20065:fcfad3f4bc66 v8.2.0588

patch 8.2.0588: Putty does not use "sgr" 'ttymouse' by default Commit: https://github.com/vim/vim/commit/314ca7cbb4b5a26959abb641a5aa265bee47abe5 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 17 16:40:31 2020 +0200 patch 8.2.0588: Putty does not use "sgr" 'ttymouse' by default Problem: Putty does not use "sgr" 'ttymouse' by default. Solution: Make "sgr" the default for Putty. (Christian Brabandt, closes #5942)
author Bram Moolenaar <Bram@vim.org>
date Fri, 17 Apr 2020 16:45: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: