From 6e81d1c5e47d0793ee7c73d5a74de1d00d88d3a5 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 23 Feb 2009 17:23:57 +0100 Subject: [PATCH] =?utf8?q?s/=E2=80=A6/./=20where=20it=20makes=20sense?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/handlers.c | 4 ++-- src/layout.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/handlers.c b/src/handlers.c index ea050be4..17693f82 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -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)) || diff --git a/src/layout.c b/src/layout.c index 0848a617..fb11b779 100644 --- a/src/layout.c +++ b/src/layout.c @@ -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)) | -- 2.39.5