Browse Source

lib/tty/tty.c: fix indentation.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Andrew Borodin 3 years ago
parent
commit
cbc214da82
1 changed files with 4 additions and 1 deletions
  1. 4 1
      lib/tty/tty.c

+ 4 - 1
lib/tty/tty.c

@@ -114,7 +114,9 @@ tty_check_term (gboolean force_xterm)
         exit (EXIT_FAILURE);
     }
 
-    return force_xterm || strncmp (termvalue, "xterm", 5) == 0
+    /* *INDENT-OFF* */
+    return force_xterm
+        || strncmp (termvalue, "xterm", 5) == 0
         || strncmp (termvalue, "konsole", 7) == 0
         || strncmp (termvalue, "rxvt", 4) == 0
         || strcmp (termvalue, "Eterm") == 0
@@ -123,6 +125,7 @@ tty_check_term (gboolean force_xterm)
         || strncmp (termvalue, "foot", 4) == 0
         || strncmp (termvalue, "screen", 6) == 0
         || strncmp (termvalue, "tmux", 4) == 0;
+    /* *INDENT-ON* */
 }
 
 /* --------------------------------------------------------------------------------------------- */