summaryrefslogtreecommitdiffstats
path: root/tty-term.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-11 17:08:09 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-11 17:08:09 +0000
commit65378588acc59fe1cf5121dc41aa782812b8033d (patch)
tree6e4528514535c024912a9fc7394e293000057d82 /tty-term.c
parent514fe11727c1b2744fff28c525fb4f48ca944860 (diff)
Don't debug this stuff.
Diffstat (limited to 'tty-term.c')
-rw-r--r--tty-term.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/tty-term.c b/tty-term.c
index bd724814..c3aece42 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -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;
}
}