view src/pathdef.sh @ 16922:4ba323df874a v8.1.1462

patch 8.1.1462: MS-Windows: using special character requires quoting commit https://github.com/vim/vim/commit/c974022c31e790136c62586eb0b0ace2d02d2afb Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 4 08:22:53 2019 +0200 patch 8.1.1462: MS-Windows: using special character requires quoting Problem: MS-Windows: using special character requires quoting. Solution: Add quotes. (Ken Takata)
author Bram Moolenaar <Bram@vim.org>
date Tue, 04 Jun 2019 08: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: