view src/pathdef.sh @ 11826:bf8cfdcdbdd8 v8.0.0793

patch 8.0.0793: using wrong terminal name for terminal window commit https://github.com/vim/vim/commit/93723a4ef18f260b82d89759db2f1eeae730c4ec Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 28 15:55:32 2017 +0200 patch 8.0.0793: using wrong terminal name for terminal window Problem: Using wrong terminal name for terminal window. Solution: When 'term' starts with "xterm" use it for $TERM in a terminal window.
author Christian Brabandt <cb@256bit.org>
date Fri, 28 Jul 2017 16:00: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: