summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/tmux/cmd-find.c3
-rw-r--r--usr.bin/tmux/cmd-set-option.c3
-rw-r--r--usr.bin/tmux/paste.c3
-rw-r--r--usr.bin/tmux/screen-write.c3
-rw-r--r--usr.bin/tmux/window-clock.c3
5 files changed, 5 insertions, 10 deletions
diff --git a/usr.bin/tmux/cmd-find.c b/usr.bin/tmux/cmd-find.c
index 02a0707fc17..2654ee0afd1 100644
--- a/usr.bin/tmux/cmd-find.c
+++ b/usr.bin/tmux/cmd-find.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-find.c,v 1.12 2015/08/13 15:02:23 nicm Exp $ */
+/* $OpenBSD: cmd-find.c,v 1.13 2015/09/14 13:22:02 nicm Exp $ */
/*
* Copyright (c) 2015 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -562,7 +562,6 @@ cmd_find_get_window_with_session(struct cmd_find_state *fs, const char *window)
return (0);
}
-
/* Stop now if exact only. */
if (exact)
return (-1);
diff --git a/usr.bin/tmux/cmd-set-option.c b/usr.bin/tmux/cmd-set-option.c
index 45b7ebc1f99..93efc240c71 100644
--- a/usr.bin/tmux/cmd-set-option.c
+++ b/usr.bin/tmux/cmd-set-option.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-set-option.c,v 1.82 2015/08/29 08:30:54 nicm Exp $ */
+/* $OpenBSD: cmd-set-option.c,v 1.83 2015/09/14 13:22:02 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -263,7 +263,6 @@ cmd_set_option_user(struct cmd *self, struct cmd_q *cmdq, const char *optstr,
return (CMD_RETURN_NORMAL);
}
-
/* Unset an option. */
int
cmd_set_option_unset(struct cmd *self, struct cmd_q *cmdq,
diff --git a/usr.bin/tmux/paste.c b/usr.bin/tmux/paste.c
index 5a8f1376def..d3f5dd70e88 100644
--- a/usr.bin/tmux/paste.c
+++ b/usr.bin/tmux/paste.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: paste.c,v 1.30 2015/09/11 14:41:50 nicm Exp $ */
+/* $OpenBSD: paste.c,v 1.31 2015/09/14 13:22:02 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -254,7 +254,6 @@ paste_set(char *data, size_t size, const char *name, char **cause)
return (-1);
}
-
pb = xmalloc(sizeof *pb);
pb->name = xstrdup(name);
diff --git a/usr.bin/tmux/screen-write.c b/usr.bin/tmux/screen-write.c
index d6254143eae..a646d8e57dd 100644
--- a/usr.bin/tmux/screen-write.c
+++ b/usr.bin/tmux/screen-write.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: screen-write.c,v 1.73 2015/07/13 13:28:50 nicm Exp $ */
+/* $OpenBSD: screen-write.c,v 1.74 2015/09/14 13:22:02 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -46,7 +46,6 @@ screen_write_stop(unused struct screen_write_ctx *ctx)
{
}
-
/* Reset screen state. */
void
screen_write_reset(struct screen_write_ctx *ctx)
diff --git a/usr.bin/tmux/window-clock.c b/usr.bin/tmux/window-clock.c
index e1fc58c6702..8af673fe435 100644
--- a/usr.bin/tmux/window-clock.c
+++ b/usr.bin/tmux/window-clock.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: window-clock.c,v 1.12 2015/08/28 12:25:42 nicm Exp $ */
+/* $OpenBSD: window-clock.c,v 1.13 2015/09/14 13:22:02 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -233,7 +233,6 @@ window_clock_draw_screen(struct window_pane *wp)
screen_write_puts(&ctx, &gc, "%s", tim);
}
-
screen_write_stop(&ctx);
return;
}