Change default prompt for readline to empty string

This commit is contained in:
2021-11-04 14:03:05 -04:00
parent e5a1f238ec
commit 0a00ecaaa8

View File

@@ -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;
}