Update format.cpp, flatten(LINE) = "" instead of " "

This commit is contained in:
Soonho Kong 2013-08-01 18:53:41 -07:00
parent e898bb996c
commit 229b4f8759

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: