diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-10-26 18:16:32 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-10-26 18:16:32 +0000 |
commit | 53957dcbaab49362748aa8b25b20e34274b6a3e9 (patch) | |
tree | 9fe74e217591a2e36ec5a07e953a979f1e7a09ff /xterm-keys.c | |
parent | e831649b64014960777e27375a44000bbabf2ee8 (diff) | |
download | rtmux-53957dcbaab49362748aa8b25b20e34274b6a3e9.tar.gz rtmux-53957dcbaab49362748aa8b25b20e34274b6a3e9.tar.bz2 rtmux-53957dcbaab49362748aa8b25b20e34274b6a3e9.zip |
Nuke accidentally-committed debugging statement.
Diffstat (limited to 'xterm-keys.c')
-rw-r--r-- | xterm-keys.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/xterm-keys.c b/xterm-keys.c index 8dadd530..9a9b3242 100644 --- a/xterm-keys.c +++ b/xterm-keys.c @@ -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)); } |