mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-08 09:14:22 +01:00
Don't debug this stuff.
This commit is contained in:
parent
514fe11727
commit
65378588ac
@ -1,4 +1,4 @@
|
||||
/* $Id: tty-term.c,v 1.9 2009-02-01 18:11:51 nicm Exp $ */
|
||||
/* $Id: tty-term.c,v 1.10 2009-02-11 17:08:09 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -210,8 +210,6 @@ tty_term_find(char *name, int fd, char **cause)
|
||||
break;
|
||||
code->type = TTYCODE_STRING;
|
||||
code->value.string = tty_term_strip(s);
|
||||
log_debug(
|
||||
"code %d,%s: (string) %s", ent->code, ent->name, s);
|
||||
break;
|
||||
case TTYCODE_NUMBER:
|
||||
n = tigetnum(ent->name);
|
||||
@ -219,8 +217,6 @@ tty_term_find(char *name, int fd, char **cause)
|
||||
break;
|
||||
code->type = TTYCODE_NUMBER;
|
||||
code->value.number = n;
|
||||
log_debug(
|
||||
"code %d,%s: (number) %d", ent->code, ent->name, n);
|
||||
break;
|
||||
case TTYCODE_FLAG:
|
||||
n = tigetflag(ent->name);
|
||||
@ -228,8 +224,6 @@ tty_term_find(char *name, int fd, char **cause)
|
||||
break;
|
||||
code->type = TTYCODE_FLAG;
|
||||
code->value.number = n;
|
||||
log_debug(
|
||||
"code %d,%s: (flag) %d", ent->code, ent->name, n);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user