view src/pathdef.sh @ 24108:0a5eba7e6660 v8.2.2595

patch 8.2.2595: setting 'winminheight' may cause 'lines' to change Commit: https://github.com/vim/vim/commit/9e813b3dea94a8952b732a224fa31beba6e85973 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 13 14:29:05 2021 +0100 patch 8.2.2595: setting 'winminheight' may cause 'lines' to change Problem: Setting 'winminheight' may cause 'lines' to change. Solution: Also take minimal height of other tabpages into account. (https://github.com/vim/vim/issues/7899)
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Mar 2021 14:30:03 +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: