view src/pathdef.sh @ 9236:9940e9b2a725 v7.4.1901

commit https://github.com/vim/vim/commit/762f1754370a1278167c8cba6c047ef319fc099c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 4 22:36:17 2016 +0200 patch 7.4.1901 Problem: Win32: the "Disabled" menu items would appear enabled. Solution: Use submenu_id if there is a parent. (Shane Harper, closes https://github.com/vim/vim/issues/834)
author Christian Brabandt <cb@256bit.org>
date Sat, 04 Jun 2016 22:45: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: