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

This commit is contained in:
Elliott Hughes 2016-01-08 23:53:30 +00:00 committed by Gerrit Code Review
commit 46798ecd17

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;
}