From 07d2da0cb06b8533bd241886ded12a10c250828b Mon Sep 17 00:00:00 2001 From: Rickey Bowers Jr Date: Thu, 16 Mar 2023 20:54:06 -0600 Subject: [PATCH] forgot the newline that needs to be sent to the model --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 7cb69f573..d21a4b1d1 100644 --- a/main.cpp +++ b/main.cpp @@ -1013,7 +1013,7 @@ int main(int argc, char ** argv) { else { line.pop_back(); // Remove the continue character } - buffer += line; // Append the line to the result + buffer += line + '\n'; // Append the line to the result } while (another_line); if (params.use_color) printf(ANSI_COLOR_RESET);