Skip to content

Commit e626b19

Browse files
committed
checking options.setting
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: passed ---
1 parent 4c15092 commit e626b19

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/repl/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/repl/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ function REPL( options ) {
161161
opts.settings.autoDisableBracketedPasteOnExit = ( opts.settings.autoDisableBracketedPasteOnExit === void 0 ) ? opts.isTTY : opts.settings.autoDisableBracketedPasteOnExit; // eslint-disable-line max-len
162162
opts.settings.syntaxHighlighting = ( opts.settings.syntaxHighlighting === void 0 ) ? opts.isTTY : opts.settings.syntaxHighlighting; // eslint-disable-line max-len
163163

164-
// This is temparary because eager evaluation conflicting with the auto_close_pairs tests.
165-
if ( options && options.settings.eagerEvaluation !== void 0 ) {
164+
// This is temparary because eager evaluation conflicting with the some tests.
165+
if ( options && options.settings && options.settings.eagerEvaluation !== void 0 ) {
166166
opts.settings.eagerEvaluation = options.settings.eagerEvaluation;
167167
}
168168
else {

0 commit comments

Comments
 (0)