view src/pathdef.sh @ 27142:d2471d710ec9 v8.2.4100

patch 8.2.4100: early return when getting the 'formatlistpat' value Commit: https://github.com/vim/vim/commit/04b871da800768287a8a432de568b11297db8686 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 15 18:31:43 2022 +0000 patch 8.2.4100: early return when getting the 'formatlistpat' value Problem: Early return when getting the 'formatlistpat' value. Solution: Remove the first line. (Christian Brabandt)
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Jan 2022 19: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: