From 0c770dc39e6f0740680d1c4d097921089e2434d8 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 26 Aug 2007 16:11:13 +0000 Subject: [PATCH] Changed the suspend character to Ctrl-Z. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22065 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/terminal/Shell.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/terminal/Shell.cpp b/src/apps/terminal/Shell.cpp index 5f3f30678e..cff72af10e 100644 --- a/src/apps/terminal/Shell.cpp +++ b/src/apps/terminal/Shell.cpp @@ -36,7 +36,7 @@ #define CEOF ('D'&037) #endif #ifndef CSUSP -#define CSUSP ('@'&037) +#define CSUSP ('Z'&037) #endif #ifndef CQUIT #define CQUIT ('\\'&037) @@ -419,7 +419,7 @@ Shell::_Spawn(int row, int col, const char *encoding, int argc, const char **arg tio.c_cc[VSWTCH] = CSWTCH; /* '^@' */ tio.c_cc[VSTART] = CSTART; /* '^S' */ tio.c_cc[VSTOP] = CSTOP; /* '^Q' */ - tio.c_cc[VSUSP] = CSUSP; /* '^@' */ + tio.c_cc[VSUSP] = CSUSP; /* '^Z' */ /* * change control tty.