mirror of
https://github.com/nushell/nushell.git
synced 2025-08-13 12:27:42 +02:00
Fix for loop ctrlc not terminating (#5003)
This commit is contained in:
@ -81,7 +81,7 @@ pub fn calculate(
|
||||
}
|
||||
PipelineData::Value(Value::Range { val, .. }, ..) => {
|
||||
let new_vals: Result<Vec<Value>, ShellError> = val
|
||||
.into_range_iter()?
|
||||
.into_range_iter(None)?
|
||||
.map(|val| mf(&[val], &name))
|
||||
.collect();
|
||||
|
||||
|
Reference in New Issue
Block a user