diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-10-28 23:05:43 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-10-28 23:05:43 +0000 |
commit | 5a4ba7629392829b5139bd39ebf374c45fb364ee (patch) | |
tree | 596e97bb0839bfbfae898842e49cc4b5c25f14f0 | |
parent | 31bb577075bf984fa429c7fa904996bb7957bf2b (diff) | |
download | rtmux-5a4ba7629392829b5139bd39ebf374c45fb364ee.tar.gz rtmux-5a4ba7629392829b5139bd39ebf374c45fb364ee.tar.bz2 rtmux-5a4ba7629392829b5139bd39ebf374c45fb364ee.zip |
Sync OpenBSD patchset 461:
Nuke accidentally-committed debugging statement.
-rw-r--r-- | xterm-keys.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xterm-keys.c b/xterm-keys.c index c7eec2b4..3151bddc 100644 --- a/xterm-keys.c +++ b/xterm-keys.c @@ -1,4 +1,4 @@ -/* $Id: xterm-keys.c,v 1.1 2009-10-28 23:03:51 tcunha Exp $ */ +/* $Id: xterm-keys.c,v 1.2 2009-10-28 23:05:43 tcunha Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -146,7 +146,6 @@ xterm_keys_find(const char *buf, size_t len, size_t *size) if (i == nitems(xterm_keys_table)) return (KEYC_NONE); *size = strlen(entry->template); - log_debug("XXX %x %x", entry->key, xterm_keys_modifiers(entry->template, buf, len)); return (entry->key | xterm_keys_modifiers(entry->template, buf, len)); } |