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 @@ -137,9 +137,9 @@ bool CommandInterpreter::GetPromptOnQuit() const {
137
137
nullptr , idx, g_interpreter_properties[idx].default_uint_value != 0 );
138
138
}
139
139
140
- void CommandInterpreter::SetPromptOnQuit (bool enable ) {
140
+ void CommandInterpreter::SetPromptOnQuit (bool b ) {
141
141
const uint32_t idx = ePropertyPromptOnQuit;
142
- m_collection_sp->SetPropertyAtIndexAsBoolean (nullptr , idx, enable );
142
+ m_collection_sp->SetPropertyAtIndexAsBoolean (nullptr , idx, b );
143
143
}
144
144
145
145
bool CommandInterpreter::GetEchoCommands () const {
@@ -356,7 +356,6 @@ void CommandInterpreter::Initialize() {
356
356
AddAlias (" p" , cmd_obj_sp, " --" )->SetHelpLong (" " );
357
357
AddAlias (" print" , cmd_obj_sp, " --" )->SetHelpLong (" " );
358
358
AddAlias (" call" , cmd_obj_sp, " --" )->SetHelpLong (" " );
359
-
360
359
if (auto po = AddAlias (" po" , cmd_obj_sp, " -O --" )) {
361
360
po->SetHelp (" Evaluate an expression on the current thread. Displays any "
362
361
" returned value with formatting "
You can’t perform that action at this time.
0 commit comments