From 991630e5232c9e6ecb455c842185601c424d8763 Mon Sep 17 00:00:00 2001 From: Nokome Bentley Date: Mon, 13 Jul 2015 15:56:15 +1200 Subject: [PATCH] Changes default for `vertical-space` to `yes` Makes this more similar (but not the same) as the previous default behaviour. --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index db11b87..f1e3e5d 100644 --- a/src/config.c +++ b/src/config.c @@ -309,7 +309,7 @@ static const TidyOptionImpl option_defs[] = { TidyEmptyTags, MU, "new-empty-tags", ST, 0, ParseTagNames, NULL }, { TidyPreTags, MU, "new-pre-tags", ST, 0, ParseTagNames, NULL }, { TidyAccessibilityCheckLevel, DG, "accessibility-check", IN, 0, ParseAcc, accessPicks }, - { TidyVertSpace, PP, "vertical-space", BL, no, ParseBool, boolPicks }, + { TidyVertSpace, PP, "vertical-space", BL, yes, ParseBool, boolPicks }, #if SUPPORT_ASIAN_ENCODINGS { TidyPunctWrap, PP, "punctuation-wrap", BL, no, ParseBool, boolPicks }, #endif