From 481c687a3b7f4145528f1eb93a70c713f37ff052 Mon Sep 17 00:00:00 2001 From: "Steffen (Daode) Nurpmeso" Date: Sat, 20 Aug 2016 17:22:52 +0200 Subject: [PATCH] Allow WANT_QUOTE_FOLD to be "require"d --- make.rc | 1 + mk-conf.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/make.rc b/make.rc index 60d6de38..4186b9c0 100644 --- a/make.rc +++ b/make.rc @@ -279,6 +279,7 @@ WANT_DOCSTRINGS=yes # A simple line-based quoting mechanism can be made available via the # *quote-fold* mechanism. This will be turned off automatically if the # required character classification is not available on the host. +# Can be "require"d. # TODO shouldn't wrap lines when only WS or a NL-escaping \ follows WANT_QUOTE_FOLD=yes diff --git a/mk-conf.sh b/mk-conf.sh index 474e62bb..8461ab9b 100644 --- a/mk-conf.sh +++ b/mk-conf.sh @@ -2390,6 +2390,7 @@ if feat_yes QUOTE_FOLD &&\ [ -n "${have_c90amend1}" ] && [ -n "${have_wcwidth}" ]; then echo '#define HAVE_QUOTE_FOLD' >> ${h} else + feat_bail_required QUOTE_FOLD echo '/* WANT_QUOTE_FOLD=0 */' >> ${h} fi -- 2.11.4.GIT