view src/pathdef.sh @ 12212:3ed8bcc9a013 v8.0.0986

patch 8.0.0986: terminal feature always requires multi-byte feature commit https://github.com/vim/vim/commit/ec0e07a32484ab70f1c7668294c3d8d67f8aca82 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 22 22:21:37 2017 +0200 patch 8.0.0986: terminal feature always requires multi-byte feature Problem: Terminal feature always requires multi-byte feature. Solution: Remove #ifdef FEAT_MBYTE, disable terminal without multi-byte.
author Christian Brabandt <cb@256bit.org>
date Tue, 22 Aug 2017 22:30:05 +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: