Changed the suspend character to Ctrl-Z.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22065 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -36,7 +36,7 @@
|
|||||||
#define CEOF ('D'&037)
|
#define CEOF ('D'&037)
|
||||||
#endif
|
#endif
|
||||||
#ifndef CSUSP
|
#ifndef CSUSP
|
||||||
#define CSUSP ('@'&037)
|
#define CSUSP ('Z'&037)
|
||||||
#endif
|
#endif
|
||||||
#ifndef CQUIT
|
#ifndef CQUIT
|
||||||
#define CQUIT ('\\'&037)
|
#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[VSWTCH] = CSWTCH; /* '^@' */
|
||||||
tio.c_cc[VSTART] = CSTART; /* '^S' */
|
tio.c_cc[VSTART] = CSTART; /* '^S' */
|
||||||
tio.c_cc[VSTOP] = CSTOP; /* '^Q' */
|
tio.c_cc[VSTOP] = CSTOP; /* '^Q' */
|
||||||
tio.c_cc[VSUSP] = CSUSP; /* '^@' */
|
tio.c_cc[VSUSP] = CSUSP; /* '^Z' */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* change control tty.
|
* change control tty.
|
||||||
|
|||||||
Reference in New Issue
Block a user