Update format.cpp, flatten(LINE) = "" instead of " "
This commit is contained in:
parent
e898bb996c
commit
229b4f8759
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue