view src/pathdef.sh @ 25727:71d3ebfb00b6 v8.2.3399

patch 8.2.3399: Octave files are not recognized Commit: https://github.com/vim/vim/commit/deba5eb195d6ac70171d4973091fa884809fa3fa Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 3 19:21:36 2021 +0200 patch 8.2.3399: Octave files are not recognized Problem: Octave files are not recognized. Solution: Detect Octave files. (Doug Kearns)
author Bram Moolenaar <Bram@vim.org>
date Fri, 03 Sep 2021 19: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: