diff --git a/goalc/compiler/Compiler.cpp b/goalc/compiler/Compiler.cpp index 30f61f5c96..26377e1ef4 100644 --- a/goalc/compiler/Compiler.cpp +++ b/goalc/compiler/Compiler.cpp @@ -115,7 +115,8 @@ void Compiler::read_eval_print(std::string input) { if (!input.empty()) { code = m_goos.reader.read_from_string(input); } else { - // if this is pulled out into a function....illegal instruction on checking the debugger? strange + // if this is pulled out into a function....illegal instruction on checking the debugger? + // strange std::string prompt = fmt::format(fmt::emphasis::bold | fg(fmt::color::cyan), "g > "); if (m_listener.is_connected()) { prompt = fmt::format(fmt::emphasis::bold | fg(fmt::color::lime_green), "gc> "); diff --git a/goalc/main.cpp b/goalc/main.cpp index f37eaf984f..c788fa4d8e 100644 --- a/goalc/main.cpp +++ b/goalc/main.cpp @@ -92,7 +92,8 @@ int main(int argc, char** argv) { } else { ReplStatus status = ReplStatus::WANT_RELOAD; while (status == ReplStatus::WANT_RELOAD) { - compiler = std::make_unique(nrepl_port, username, std::make_unique()); + compiler = + std::make_unique(nrepl_port, username, std::make_unique()); status = compiler->execute_repl(auto_listen, auto_debug); if (status == ReplStatus::WANT_RELOAD) { fmt::print("Reloading compiler...\n");