summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/paste.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2014-03-31 21:39:31 +0000
committernicm <nicm@openbsd.org>2014-03-31 21:39:31 +0000
commitf0c50ee514437c8eacae14941d390b872747dfef (patch)
tree9d884f0a9a2e184300ea92b779c734fad123db8b /usr.bin/tmux/paste.c
parentMake session_attached a count and add session_many_attached flag. (diff)
downloadwireguard-openbsd-f0c50ee514437c8eacae14941d390b872747dfef.tar.xz
wireguard-openbsd-f0c50ee514437c8eacae14941d390b872747dfef.zip
Add setb -a to append and a copy mode append command, from J Raynor with
minor changes.
Diffstat (limited to 'usr.bin/tmux/paste.c')
-rw-r--r--usr.bin/tmux/paste.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/paste.c b/usr.bin/tmux/paste.c
index b6f0f16939d..43c9d02803a 100644
--- a/usr.bin/tmux/paste.c
+++ b/usr.bin/tmux/paste.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: paste.c,v 1.15 2014/02/17 23:07:03 nicm Exp $ */
+/* $OpenBSD: paste.c,v 1.16 2014/03/31 21:39:31 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -172,7 +172,7 @@ paste_print(struct paste_buffer *pb, size_t width)
/* Paste into a window pane, filtering '\n' according to separator. */
void
-paste_send_pane (struct paste_buffer *pb, struct window_pane *wp,
+paste_send_pane(struct paste_buffer *pb, struct window_pane *wp,
const char *sep, int bracket)
{
const char *data = pb->data, *end = data + pb->size, *lf;