@@ -123,15 +123,15 @@ defmodule IEx.Evaluator do
123
123
counter: config . counter + 1 }
124
124
end
125
125
126
- defp handle_eval ( { :error , { line , error , "" } } , code , _line , config ) do
127
- # Update config.cache so that IEx continues to add new input to
128
- # the unfinished expression in `code`
129
- % { config | cache: code }
126
+ defp handle_eval ( { :error , { _ , _ , "" } } , code , _line , config ) do
127
+ # Update config.cache so that IEx continues to add new input to
128
+ # the unfinished expression in `code`
129
+ % { config | cache: code }
130
130
end
131
131
132
- defp handle_eval ( { :error , { line , error , token } } , code , _line , config ) do
133
- # Encountered malformed expression
134
- :elixir_errors . parse_error ( line , "iex" , error , token )
132
+ defp handle_eval ( { :error , { line , error , token } } , _code , _line , _config ) do
133
+ # Encountered malformed expression
134
+ :elixir_errors . parse_error ( line , "iex" , error , token )
135
135
end
136
136
137
137
defp update_history ( counter , cache , result ) do
0 commit comments