diff options
author | Jérémie Courrèges-Anglas <jca@wxcvbn.org> | 2016-11-11 15:42:02 +0100 |
---|---|---|
committer | Jérémie Courrèges-Anglas <jca@wxcvbn.org> | 2016-11-11 15:42:02 +0100 |
commit | 710ce5f7d25c96fed0390227d75f28f0c662a1fa (patch) | |
tree | a0c68bb7adfc80c035e381f66ec4ebd6df1f92d0 | |
parent | 0c4ea38ef84d990eb531267c980e2b90fe6a6f3a (diff) | |
download | ratpoison-710ce5f7d25c96fed0390227d75f28f0c662a1fa.zip |
Debug statement that snuck in previous.
-rw-r--r-- | src/completions.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/completions.c b/src/completions.c index 9bd35af..7320ae5 100644 --- a/src/completions.c +++ b/src/completions.c @@ -185,7 +185,6 @@ completions_complete (rp_completions *c, char *partial, int direction) if (direction == COMPLETION_PREVIOUS) c->last_match = list_prev_entry (c->last_match, &c->completion_list, node); - PRINT_DEBUG(("%s -> %s\n", sbuf_get (c->last_match), c->partial)); /* Now check if last_match is a match for partial. */ if (completions_match (c, sbuf_get (c->last_match), c->partial)) return sbuf_get (c->last_match); |