summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/epist/screen.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/util/epist/screen.cc b/util/epist/screen.cc
index 995c76ef..1705202b 100644
--- a/util/epist/screen.cc
+++ b/util/epist/screen.cc
@@ -830,13 +830,9 @@ bool screen::nothingIsPressed(void) const
XQueryKeymap(_epist->getXDisplay(), keys);
for (int i = 0; i < 32; ++i) {
- if (keys[i] != 0) {
- cout << "debug: not all keys have been released.\n";
+ if (keys[i] != 0)
return false;
- }
}
- cout << "debug: all keys have been released.\n";
-
return true;
}