view src/pathdef.sh @ 23064:89c324e327c0 v8.2.2078

patch 8.2.2078: illegal memory access when using :print on invalid text Commit: https://github.com/vim/vim/commit/1cbfc9914db1cb06aaa092fa42eb7a2fc3dc7ad7 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 2 12:37:37 2020 +0100 patch 8.2.2078: illegal memory access when using :print on invalid text Problem: Illegal memory access when using :print on invalid text. (Dhiraj Mishra) Solution: Check for more composing characters than supported. (closes #7399)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Dec 2020 12:45: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: