summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm>2014-04-17 12:57:28 +0000
committernicm <nicm>2014-04-17 12:57:28 +0000
commitc3b2e5eed3b3ad4fd33cf011c5f4de6d25c602c0 (patch)
tree0169b0870d6d344cea3d7375ec5075c511586ef3
parentada75af199405c546588faacf8806e957c163621 (diff)
Wrap some long lines.
-rw-r--r--options-table.c3
-rw-r--r--tty-term.c3
-rw-r--r--tty.c3
3 files changed, 6 insertions, 3 deletions
diff --git a/options-table.c b/options-table.c
index abeae7af..d68a41c3 100644
--- a/options-table.c
+++ b/options-table.c
@@ -528,7 +528,8 @@ const struct options_table_entry window_options_table[] = {
{ .name = "automatic-rename-format",
.type = OPTIONS_TABLE_STRING,
- .default_str = "#{?pane_in_mode,[tmux],#{pane_current_command}}#{?pane_dead,[dead],}"
+ .default_str = "#{?pane_in_mode,[tmux],#{pane_current_command}}"
+ "#{?pane_dead,[dead],}"
},
{ .name = "c0-change-trigger",
diff --git a/tty-term.c b/tty-term.c
index a66aad83..bedf0cfd 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -506,7 +506,8 @@ tty_term_ptr1(struct tty_term *term, enum tty_code_code code, const void *a)
}
const char *
-tty_term_ptr2(struct tty_term *term, enum tty_code_code code, const void *a, const void *b)
+tty_term_ptr2(struct tty_term *term, enum tty_code_code code, const void *a,
+ const void *b)
{
return (tparm((char *) tty_term_string(term, code), a, b));
}
diff --git a/tty.c b/tty.c
index b545dc33..f148f420 100644
--- a/tty.c
+++ b/tty.c
@@ -388,7 +388,8 @@ tty_putcode_ptr1(struct tty *tty, enum tty_code_code code, const void *a)
}
void
-tty_putcode_ptr2(struct tty *tty, enum tty_code_code code, const void *a, const void *b)
+tty_putcode_ptr2(struct tty *tty, enum tty_code_code code, const void *a,
+ const void *b)
{
if (a != NULL && b != NULL)
tty_puts(tty, tty_term_ptr2(tty->term, code, a, b));