view src/pathdef.sh @ 11872:ff8122091ec6 v8.0.0816

patch 8.0.0816: crash when using invalid buffer number commit https://github.com/vim/vim/commit/f144a3fb73340fe22e08bd1fa77e27c9f55bb0af Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 30 18:02:12 2017 +0200 patch 8.0.0816: crash when using invalid buffer number Problem: Crash when using invalid buffer number. Solution: Check for NULL buffer. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/1899)
author Christian Brabandt <cb@256bit.org>
date Sun, 30 Jul 2017 18:15:04 +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: