view src/pathdef.sh @ 16992:0f2663c087cd v8.1.1496

patch 8.1.1496: popup window height is not recomputed commit https://github.com/vim/vim/commit/acc682bd7ca66b74b42de7a5fb5d3ef37897926f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 8 17:15:51 2019 +0200 patch 8.1.1496: popup window height is not recomputed Problem: Popup window height is not recomputed. Solution: Recompute the height when needed.
author Bram Moolenaar <Bram@vim.org>
date Sat, 08 Jun 2019 17:30:06 +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: