From 0a00ecaaa891624ebe79c9b0e5b7326a35893919 Mon Sep 17 00:00:00 2001 From: Josh Yelon Date: Thu, 4 Nov 2021 14:03:05 -0400 Subject: [PATCH] Change default prompt for readline to empty string --- luprex/core/cpp/drivenengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luprex/core/cpp/drivenengine.cpp b/luprex/core/cpp/drivenengine.cpp index da295e21..712caaa2 100644 --- a/luprex/core/cpp/drivenengine.cpp +++ b/luprex/core/cpp/drivenengine.cpp @@ -11,7 +11,7 @@ Channel::Channel(DrivenEngine *de, int chid, int port, const std::string &target target_ = target; readline_enabled_ = (chid == 0); readline_lastc_ = 0; - desired_prompt_ = "] "; + desired_prompt_ = ""; assert(driven_->channels_[chid_] == nullptr); driven_->channels_[chid_] = this; }