mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
parent
49cbc30974
commit
7c9a78d922
@ -29,6 +29,11 @@ pub fn eval_call(
|
||||
call: &Call,
|
||||
input: PipelineData,
|
||||
) -> Result<PipelineData, ShellError> {
|
||||
if let Some(ctrlc) = &engine_state.ctrlc {
|
||||
if ctrlc.load(core::sync::atomic::Ordering::SeqCst) {
|
||||
return Ok(Value::Nothing { span: call.head }.into_pipeline_data());
|
||||
}
|
||||
}
|
||||
let decl = engine_state.get_decl(call.decl_id);
|
||||
|
||||
if !decl.is_known_external() && call.named_iter().any(|(flag, _, _)| flag.item == "help") {
|
||||
|
Loading…
Reference in New Issue
Block a user