view src/pathdef.sh @ 12401:eb8d5c4936f1 v8.0.1080

patch 8.0.1080: memory leak for eof_chars terminal option and buffer name commit https://github.com/vim/vim/commit/74121231be50e245d18c64281fdef08e7ec1ed5b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 9 16:34:32 2017 +0200 patch 8.0.1080: memory leak for eof_chars terminal option and buffer name Problem: Memory leak for eof_chars terminal option and buffer name. Solution: Free job options. Free the buffer name
author Christian Brabandt <cb@256bit.org>
date Sat, 09 Sep 2017 16:45: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: