From 253790be515d9d742774b94f8ed80029571f7591 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Mon, 26 Mar 2018 19:50:51 +1100 Subject: [PATCH] Formatting fix --- src/input_handler.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/input_handler.cc b/src/input_handler.cc index ffa923b1..210b0ec9 100644 --- a/src/input_handler.cc +++ b/src/input_handler.cc @@ -1005,9 +1005,9 @@ private: void history_push(History& history, StringView entry) { - if(entry.empty() or - (m_flags & PromptFlags::DropHistoryEntriesWithBlankPrefix and - is_horizontal_blank(entry[0_byte]))) + if (entry.empty() or + (m_flags & PromptFlags::DropHistoryEntriesWithBlankPrefix and + is_horizontal_blank(entry[0_byte]))) return; history.erase(std::remove(history.begin(), history.end(), entry),