diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-02-10 03:50:47 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-02-10 03:50:47 +0000 |
| commit | 544bc20a843455e66b344bd0b8b16c87ab355c09 (patch) | |
| tree | 9319a97cf4f266aaadc293c2587eb6416c8b9c45 | |
| parent | 43c1f2a8f84d8008155d6df8e2bcd35534c62893 (diff) | |
rm debug prints
| -rw-r--r-- | src/client.cc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/client.cc b/src/client.cc index 9d6ebf10..091b095e 100644 --- a/src/client.cc +++ b/src/client.cc @@ -1585,15 +1585,9 @@ Client *Client::searchModalTree(Client *node, Client *skip) for (it = node->_transients.begin(); it != end; ++it) { if (*it == skip) continue; // circular? - printf("recursing\n"); if ((ret = searchModalTree(*it, skip))) return ret; // got one - printf("trying this window\n"); - if ((*it)->_modal) { - printf("found it\n"); - return *it; // got one - } + if ((*it)->_modal) return *it; // got one } - printf("found none\n"); return 0; } |
