view src/pathdef.sh @ 20683:3a9dcfe62691 v8.2.0895

patch 8.2.0895: :mkspell output does not mention the tree type Commit: https://github.com/vim/vim/commit/408c23b0794540ee3c568a1569f21406c5ed3ab8 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 3 22:15:45 2020 +0200 patch 8.2.0895: :mkspell output does not mention the tree type Problem: :mkspell output does not mention the tree type. Solution: Back out increasing the limits, it has no effect. Mention the tree being compressed. Only give a message once per second.
author Bram Moolenaar <Bram@vim.org>
date Wed, 03 Jun 2020 22:30:04 +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: