view src/configure @ 10307:f4798aebef67 v8.0.0049

commit https://github.com/vim/vim/commit/2f97912800e86a296c001832bbbf2fc425f1e533 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 27 17:27:44 2016 +0200 patch 8.0.0049 Problem: When a match ends in part of concealed text highlighting, it might mess up concealing by resetting prev_syntax_id. Solution: Do not reset prev_syntax_id and add a test to verify. (Christian Brabandt, closes #1092)
author Christian Brabandt <cb@256bit.org>
date Thu, 27 Oct 2016 17:30:04 +0200
parents cd9471bd8e9e
children
line wrap: on
line source

#! /bin/sh
# run the automatically generated configure script
CONFIG_STATUS=auto/config.status \
	auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
result=$?

# Stupid autoconf 2.5x causes this file to be left behind.
if test -f configure.lineno; then rm -f configure.lineno; fi

exit $result