view src/pathdef.sh @ 12822:0eb12ef4f8ba v8.0.1288

patch 8.0.1288: GUI: cannot drag the statusline of a terminal window commit https://github.com/vim/vim/commit/ae147ab2d7649e7a0bcf11b9f3db1900c1a4d594 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 11 17:09:09 2017 +0100 patch 8.0.1288: GUI: cannot drag the statusline of a terminal window Problem: GUI: cannot drag the statusline of a terminal window. Solution: Handle the TERMINAL state. (Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Sat, 11 Nov 2017 17:15:04 +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: