summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/deno_error.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/deno_error.rs b/cli/deno_error.rs
index 544a411ba..41b0d4a94 100644
--- a/cli/deno_error.rs
+++ b/cli/deno_error.rs
@@ -192,6 +192,7 @@ impl GetErrorKind for ReadlineError {
match self {
Io(err) => GetErrorKind::kind(err),
Eof => ErrorKind::UnexpectedEof,
+ Interrupted => ErrorKind::Interrupted,
#[cfg(unix)]
Errno(err) => err.kind(),
_ => unimplemented!(),