From e9e48c0703de84eec7cd4110746695c0dce3c689 Mon Sep 17 00:00:00 2001 From: Rhys Weatherley Date: Wed, 9 Mar 2016 19:41:09 +1000 Subject: [PATCH] Don't use CTRL-Z for "exit", only CTRL-D --- libraries/Terminal/Shell.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/Terminal/Shell.cpp b/libraries/Terminal/Shell.cpp index 176cfad7..b3aa396f 100644 --- a/libraries/Terminal/Shell.cpp +++ b/libraries/Terminal/Shell.cpp @@ -209,8 +209,8 @@ void Shell::loop() clearCharacters(curLen); break; - case 0x04: case 0x1A: - // CTRL-D or CTRL-Z - equivalent to the "exit" command. + case 0x04: + // CTRL-D - equivalent to the "exit" command. executeBuiltin(builtin_cmd_exit); break;