From 526e2276b014f24e6c19b00775911eb4d0080343 Mon Sep 17 00:00:00 2001 From: Paul Kulchenko Date: Tue, 22 Nov 2022 21:31:39 -0800 Subject: [PATCH] Change the defaut command prompts (reapply 82f2e758) --- third_party/sqlite3/shell.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/third_party/sqlite3/shell.c b/third_party/sqlite3/shell.c index 54d60b412..ee44903af 100644 --- a/third_party/sqlite3/shell.c +++ b/third_party/sqlite3/shell.c @@ -1,3 +1,4 @@ +/* clang-format off */ /* DO NOT EDIT! ** This file is automatically generated by the script in the canonical ** SQLite source tree at tool/mkshellc.tcl. That script combines source @@ -11379,8 +11380,8 @@ static void main_init(ShellState *data) { sqlite3_config(SQLITE_CONFIG_URI, 1); sqlite3_config(SQLITE_CONFIG_LOG, shellLog, data); sqlite3_config(SQLITE_CONFIG_MULTITHREAD); - sqlite3_snprintf(sizeof(mainPrompt), mainPrompt,"sqlite> "); - sqlite3_snprintf(sizeof(continuePrompt), continuePrompt," ...> "); + sqlite3_snprintf(sizeof(mainPrompt), mainPrompt,"sqlite>: "); + sqlite3_snprintf(sizeof(continuePrompt), continuePrompt," ...>: "); } /*