view src/pathdef.sh @ 27732:4cc78957f550 v8.2.4392

patch 8.2.4392: MS-Windows with VIMDLL: Escaping CSI is wrong Commit: https://github.com/vim/vim/commit/64d95cfc56406858a05032c6a134f1e08fe2ca78 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 15 17:17:18 2022 +0000 patch 8.2.4392: MS-Windows with VIMDLL: Escaping CSI is wrong Problem: MS-Windows with VIMDLL: Escaping CSI is wrong. Solution: Put back #ifdef. (Ken Takata, closes https://github.com/vim/vim/issues/9769)
author Bram Moolenaar <Bram@vim.org>
date Tue, 15 Feb 2022 18: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: