Changes default for `vertical-space` to `yes`

Makes this more similar (but not the same) as the previous default
behaviour.
This commit is contained in:
Nokome Bentley 2015-07-13 15:56:15 +12:00
parent b6bcf0408c
commit 991630e523
1 changed files with 1 additions and 1 deletions

View File

@ -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