Merge "Improve dumb terminal support (emacs is dumb)."

am: 46798ecd17

* commit '46798ecd1700c62472b9040e49a69207c5e33834':
  Improve dumb terminal support (emacs is dumb).
This commit is contained in:
Elliott Hughes 2016-01-09 00:09:03 +00:00 committed by android-build-merger
commit ec97cb8b50

View file

@ -67,7 +67,7 @@ static void Out(const std::string& s) {
void LinePrinter::Print(string to_print, LineType type) {
if (!smart_terminal_) {
Out(to_print);
Out(to_print + "\n");
return;
}