nr &= XCB_EVENT_RESPONSE_TYPE_MASK;
assert(nr >= 2);
- /* Check if we need to escape this loop… */
+ /* Check if we need to escape this loop */
if (nr == XCB_BUTTON_RELEASE)
break;
if (client == NULL)
return 0;
- /* Check if the fullscreen state should be toggled… */
+ /* Check if the fullscreen state should be toggled */
if ((client->fullscreen &&
(event->data.data32[0] == _NET_WM_STATE_REMOVE ||
event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
int current_client = 0;
CIRCLEQ_FOREACH(client, &(container->clients), clients) {
- /* Check if we changed client->x or client->y by updating it…
+ /* Check if we changed client->x or client->y by updating it.
* Note the bitwise OR instead of logical OR to force evaluation of both statements */
if (client->force_reconfigure |
(client->rect.x != (client->rect.x = container->x)) |