]> git.sur5r.net Git - i3/i3/commitdiff
s/…/./ where it makes sense
authorMichael Stapelberg <michael+git@stapelberg.de>
Mon, 23 Feb 2009 16:23:57 +0000 (17:23 +0100)
committerMichael Stapelberg <michael+git@stapelberg.de>
Mon, 23 Feb 2009 16:23:57 +0000 (17:23 +0100)
src/handlers.c
src/layout.c

index ea050be4404d9f3bb288b991e3b3c6134798bafc..17693f82dd9171cea8b55bce754f89402bb16493 100644 (file)
@@ -226,7 +226,7 @@ int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_
                 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;
 
@@ -390,7 +390,7 @@ int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message
                 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)) ||
index 0848a61792fff48d1a8b4dbdb086f9b12bb0ac79..fb11b77982c05d1555f25aeb4c0ce7d2bd8916ca 100644 (file)
@@ -211,7 +211,7 @@ static void render_container(xcb_connection_t *connection, Container *container)
 
                 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)) |