From 65378588acc59fe1cf5121dc41aa782812b8033d Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 11 Feb 2009 17:08:09 +0000 Subject: [PATCH] Don't debug this stuff. --- tty-term.c | 8 +------- 1 file changed, 1 insertion(+), 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 @@ -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; } }