mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-08 09:14:22 +01:00
Always set VERASE to \177.
This commit is contained in:
parent
4d4ec52df8
commit
5fcf7149d4
@ -1,4 +1,4 @@
|
||||
/* $Id: cmd-new-session.c,v 1.63 2009-09-13 20:30:12 tcunha Exp $ */
|
||||
/* $Id: cmd-new-session.c,v 1.64 2009-09-13 20:56:52 tcunha Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -179,7 +179,6 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
memset(tio.c_cc, _POSIX_VDISABLE, sizeof tio.c_cc);
|
||||
tio.c_cc[VINTR] = CINTR;
|
||||
tio.c_cc[VQUIT] = CQUIT;
|
||||
tio.c_cc[VERASE] = '\177';
|
||||
tio.c_cc[VKILL] = CKILL;
|
||||
tio.c_cc[VEOF] = CEOF;
|
||||
tio.c_cc[VSTART] = CSTART;
|
||||
@ -192,6 +191,7 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
tio.c_cc[VLNEXT] = CLNEXT;
|
||||
#endif
|
||||
}
|
||||
tio.c_cc[VERASE] = '\177';
|
||||
tio.c_iflag = TTYDEF_IFLAG;
|
||||
tio.c_oflag = TTYDEF_OFLAG;
|
||||
tio.c_lflag = TTYDEF_LFLAG;
|
||||
|
Loading…
Reference in New Issue
Block a user