Roll back to flatten(line) == " "

This commit is contained in:
Soonho Kong 2013-08-02 19:16:19 -07:00
parent 4ebb96d7cd
commit bddecd7d9c

View file

@ -91,7 +91,7 @@ sexpr format::flatten(sexpr const & s) {
/* flatten (x <|> y) = flatten x */
return flatten(sexpr_choice_1(s));
case format_kind::LINE:
return sexpr_text(sexpr(""));
return sexpr_text(sexpr(" "));
case format_kind::TEXT:
case format_kind::COLOR_BEGIN:
case format_kind::COLOR_END: