]> git.sur5r.net Git - i3/i3/commitdiff
Code style: fix misaligned and misindented comments 3549/head
authorAlbert Safin <xzfcpw@gmail.com>
Sun, 9 Dec 2018 00:06:29 +0000 (07:06 +0700)
committerAlbert Safin <xzfcpw@gmail.com>
Sun, 9 Dec 2018 01:04:55 +0000 (08:04 +0700)
src/bindings.c
src/commands_parser.c
src/config.c
src/config_parser.c
src/log.c
src/main.c
src/render.c
src/scratchpad.c
src/sd-daemon.c
src/window.c

index 6704c816e148170a987088c505c2298245c7e33c..732543d087dc0aacaeeeb9c9087dd8acb9edb9a3 100644 (file)
@@ -123,7 +123,7 @@ static bool binding_in_current_group(const Binding *bind) {
 }
 
 static void grab_keycode_for_binding(xcb_connection_t *conn, Binding *bind, uint32_t keycode) {
-/* Grab the key in all combinations */
+    /* Grab the key in all combinations */
 #define GRAB_KEY(modifier)                                                                       \
     do {                                                                                         \
         xcb_grab_key(conn, 0, root, modifier, keycode, XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC); \
index 4299c008335570ced9c8daebc12bdaa1cefd74e9..0da65adc1ffc2b9e95cca2d8e008622e5576b417 100644 (file)
@@ -353,7 +353,7 @@ CommandResult *parse_command(const char *input, yajl_gen gen) {
                 if (*walk == '\0' || *walk == ',' || *walk == ';') {
                     next_state(token);
                     token_handled = true;
-/* To make sure we start with an appropriate matching
+                    /* To make sure we start with an appropriate matching
                      * datastructure for commands which do *not* specify any
                      * criteria, we re-initialize the criteria system after
                      * every command. */
index 9631b2160237732ed404ad02757ab064b8d87b9b..402771b1ffc95580f4ad7f26c06bf975a4b6ca65 100644 (file)
@@ -202,7 +202,7 @@ void load_configuration(xcb_connection_t *conn, const char *override_configpath,
     /* Clear the old config or initialize the data structure */
     memset(&config, 0, sizeof(config));
 
-/* Initialize default colors */
+    /* Initialize default colors */
 #define INIT_COLOR(x, cborder, cbackground, ctext, cindicator) \
     do {                                                       \
         x.border = draw_util_hex_to_color(cborder);            \
index 9f972fed8f80b4510931cac6edb52cef431c832a..c238f1b9fa9a647690bbeef526aac557c05be617 100644 (file)
@@ -409,7 +409,7 @@ struct ConfigResultIR *parse_config(const char *input, struct context *context)
                 if (*walk == '\0' || *walk == '\n' || *walk == '\r') {
                     next_state(token);
                     token_handled = true;
-/* To make sure we start with an appropriate matching
+                    /* To make sure we start with an appropriate matching
                      * datastructure for commands which do *not* specify any
                      * criteria, we re-initialize the criteria system after
                      * every command. */
index 916085f456a8d8c1a95dbfca8c13d3d5b038db12..31db8b33c5b4e013ac9ba874f3b751a63e7717c0 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -124,9 +124,9 @@ void init_logging(void) {
  */
 void open_logbuffer(void) {
     /* Reserve 1% of the RAM for the logfile, but at max 25 MiB.
-         * For 512 MiB of RAM this will lead to a 5 MiB log buffer.
-         * At the moment (2011-12-10), no testcase leads to an i3 log
-         * of more than ~ 600 KiB. */
+     * For 512 MiB of RAM this will lead to a 5 MiB log buffer.
+     * At the moment (2011-12-10), no testcase leads to an i3 log
+     * of more than ~ 600 KiB. */
     logbuffer_size = min(physical_mem_bytes * 0.01, shmlog_size);
 #if defined(__FreeBSD__)
     sasprintf(&shmlogname, "/tmp/i3-log-%d", getpid());
index b8b4bdf15c1eb2cdb9dd6c5e9951969255ed4e4d..4a20e0c0623552f935b00ed820ba76fe3e2c6360 100644 (file)
@@ -529,7 +529,7 @@ int main(int argc, char *argv[]) {
     root_screen = xcb_aux_get_screen(conn, conn_screen);
     root = root_screen->root;
 
-/* Place requests for the atoms we need as soon as possible */
+    /* Place requests for the atoms we need as soon as possible */
 #define xmacro(atom) \
     xcb_intern_atom_cookie_t atom##_cookie = xcb_intern_atom(conn, 0, strlen(#atom), #atom);
 #include "atoms.xmacro"
@@ -567,7 +567,7 @@ int main(int argc, char *argv[]) {
     xcb_get_geometry_cookie_t gcookie = xcb_get_geometry(conn, root);
     xcb_query_pointer_cookie_t pointercookie = xcb_query_pointer(conn, root);
 
-/* Setup NetWM atoms */
+    /* Setup NetWM atoms */
 #define xmacro(name)                                                                       \
     do {                                                                                   \
         xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, name##_cookie, NULL); \
index e9e38ae016bf128e8b4ed9201013a43268247bfc..e16e36d7251cab479acd84c778e46ee2d0060c6d 100644 (file)
@@ -134,17 +134,17 @@ void render_con(Con *con) {
             x_raise_con(child);
             if ((child = TAILQ_FIRST(&(con->focus_head)))) {
                 /* By rendering the stacked container again, we handle the case
-             * that we have a non-leaf-container inside the stack. In that
-             * case, the children of the non-leaf-container need to be raised
-             * as well. */
+                 * that we have a non-leaf-container inside the stack. In that
+                 * case, the children of the non-leaf-container need to be
+                 * raised as well. */
                 render_con(child);
             }
 
             if (params.children != 1)
-                /* Raise the stack con itself. This will put the stack decoration on
-             * top of every stack window. That way, when a new window is opened in
-             * the stack, the old window will not obscure part of the decoration
-             * (it’s unmapped afterwards). */
+                /* Raise the stack con itself. This will put the stack
+                 * decoration on top of every stack window. That way, when a
+                 * new window is opened in the stack, the old window will not
+                 * obscure part of the decoration (it’s unmapped afterwards). */
                 x_raise_con(con);
         }
     }
index a679f20a666dd2f239a39f28c7997aed764615e7..b7fbcc923221bdf1466fdc206efa8410f0421e25 100644 (file)
@@ -121,8 +121,8 @@ bool scratchpad_show(Con *con) {
             DLOG("Found an unfocused scratchpad window on this workspace\n");
             DLOG("Focusing it: %p\n", walk_con);
             /* use con_descend_tiling_focused to get the last focused
-                 * window inside this scratch container in order to
-                 * keep the focus the same within this container */
+             * window inside this scratch container in order to
+             * keep the focus the same within this container */
             con_activate(con_descend_tiling_focused(walk_con));
             return true;
         }
index dc33b2e9a5e38e8841708724977f99a2c319dfe3..28a88bfd71600027fae1525a1e20418ace51097e 100644 (file)
@@ -413,8 +413,7 @@ int sd_booted(void) {
 
     struct stat a, b;
 
-    /* We simply test whether the systemd cgroup hierarchy is
-         * mounted */
+    /* We simply test whether the systemd cgroup hierarchy is mounted */
 
     if (lstat("/sys/fs/cgroup", &a) < 0)
         return 0;
index bec4c691cf7d142a945e8a885e0bb4a0b2a969d7..799488c6915259c798ee0fe7c2fc1df8b4ead00c 100644 (file)
@@ -439,7 +439,7 @@ void window_update_hints(i3Window *win, xcb_get_property_reply_t *prop, bool *ur
  *
  */
 void window_update_motif_hints(i3Window *win, xcb_get_property_reply_t *prop, border_style_t *motif_border_style) {
-/* This implementation simply mirrors Gnome's Metacity. Official
+    /* This implementation simply mirrors Gnome's Metacity. Official
      * documentation of this hint is nowhere to be found.
      * For more information see:
      * https://people.gnome.org/~tthurman/docs/metacity/xprops_8h-source.html