From 67f1fc6b03746f5c3d9c6e26ad0d16e6fe8eec62 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 2 Nov 2009 20:28:41 +0000 Subject: [PATCH] Added a minor console feature to eat blank lines. --- Console.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Console.cpp b/Console.cpp index e43fab3..6946da7 100644 --- a/Console.cpp +++ b/Console.cpp @@ -226,6 +226,8 @@ static void Console(apr_pool_t *pool, int client) { mode_ = Working; if (line == NULL) break; + if (line[0] == '\0') + goto read; if (!extra) { extra = true; -- 2.47.2