From d68ad69d1dc8dad9245acb75d827a201e2e282ee Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Fri, 8 Jan 2016 15:47:07 -0800 Subject: [PATCH] Improve dumb terminal support (emacs is dumb). Bug: http://b/26444032 Change-Id: Iaff4b09b613fd30ab7c4c73e096da34f37e0de07 --- adb/line_printer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adb/line_printer.cpp b/adb/line_printer.cpp index e8fe6c97d..4ec89799b 100644 --- a/adb/line_printer.cpp +++ b/adb/line_printer.cpp @@ -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; }