mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
auto formatting
This commit is contained in:
@@ -220,7 +220,7 @@ void Shell::loop_normal() {
|
||||
if (line_no_ < MAX_LINES - 1) {
|
||||
line_no_++;
|
||||
}
|
||||
cursor_ = 0;
|
||||
cursor_ = 0;
|
||||
} else if (c == 'B') { // cursor down
|
||||
if (line_no_) {
|
||||
line_no_--;
|
||||
@@ -514,7 +514,7 @@ void Shell::process_command() {
|
||||
while (--no) {
|
||||
line_old_[no] = line_old_[no - 1];
|
||||
}
|
||||
line_no_ = 0;
|
||||
line_no_ = 0;
|
||||
line_old_[0] = line_buffer_;
|
||||
while (!line_buffer_.empty()) {
|
||||
size_t pos = line_buffer_.find(';');
|
||||
|
||||
Reference in New Issue
Block a user