view src/pathdef.sh @ 14165:5b5364d0729d v8.1.0100

patch 8.1.0100: terminal debugger: error when setting a watch point commit https://github.com/vim/vim/commit/6dccc962f3d019f94656e77309aa00af7bffa4c3 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 23 14:36:17 2018 +0200 patch 8.1.0100: terminal debugger: error when setting a watch point Problem: Terminal debugger: error when setting a watch point. Solution: Don't try defining a sign for a watch point.
author Christian Brabandt <cb@256bit.org>
date Sat, 23 Jun 2018 14:45: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: