view src/pathdef.sh @ 15314:c4d62945d96f v8.1.0665

patch 8.1.0665: text property display wrong when 'spell' is set commit https://github.com/vim/vim/commit/c6d86dccc4edff8627e309fb23dc8f810ef36b28 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 31 13:57:36 2018 +0100 patch 8.1.0665: text property display wrong when 'spell' is set Problem: Text property display wrong when 'spell' is set. (Dominique Pelle) Solution: Remove unnecessary assignment to char_attr. Combine attributes if needed. Add a screenshot test.
author Bram Moolenaar <Bram@vim.org>
date Mon, 31 Dec 2018 14:00:06 +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: