File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -135,9 +135,9 @@ bool CommandInterpreter::GetPromptOnQuit() const {
135
135
nullptr , idx, g_interpreter_properties[idx].default_uint_value != 0 );
136
136
}
137
137
138
- void CommandInterpreter::SetPromptOnQuit (bool enable ) {
138
+ void CommandInterpreter::SetPromptOnQuit (bool b ) {
139
139
const uint32_t idx = ePropertyPromptOnQuit;
140
- m_collection_sp->SetPropertyAtIndexAsBoolean (nullptr , idx, enable );
140
+ m_collection_sp->SetPropertyAtIndexAsBoolean (nullptr , idx, b );
141
141
}
142
142
143
143
bool CommandInterpreter::GetEchoCommands () const {
@@ -354,7 +354,6 @@ void CommandInterpreter::Initialize() {
354
354
AddAlias (" p" , cmd_obj_sp, " --" )->SetHelpLong (" " );
355
355
AddAlias (" print" , cmd_obj_sp, " --" )->SetHelpLong (" " );
356
356
AddAlias (" call" , cmd_obj_sp, " --" )->SetHelpLong (" " );
357
-
358
357
if (auto po = AddAlias (" po" , cmd_obj_sp, " -O --" )) {
359
358
po->SetHelp (" Evaluate an expression on the current thread. Displays any "
360
359
" returned value with formatting "
You can’t perform that action at this time.
0 commit comments