summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/paste.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2014-06-20 11:00:19 +0000
committernicm <nicm@openbsd.org>2014-06-20 11:00:19 +0000
commita54272040a00a8b56dfcc10e800ecb7434168426 (patch)
treeaed135a3dd751773a7832741f656ba84f5aebddc /usr.bin/tmux/paste.c
parentMake -S- and -E- mean the start and end to capture-pane to avoid having (diff)
downloadwireguard-openbsd-a54272040a00a8b56dfcc10e800ecb7434168426.tar.xz
wireguard-openbsd-a54272040a00a8b56dfcc10e800ecb7434168426.zip
Comment style nits.
Diffstat (limited to 'usr.bin/tmux/paste.c')
-rw-r--r--usr.bin/tmux/paste.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/paste.c b/usr.bin/tmux/paste.c
index bfd531c9bfd..c9339b205db 100644
--- a/usr.bin/tmux/paste.c
+++ b/usr.bin/tmux/paste.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: paste.c,v 1.20 2014/05/13 22:54:18 nicm Exp $ */
+/* $OpenBSD: paste.c,v 1.21 2014/06/20 11:00:19 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -69,7 +69,7 @@ paste_walk(struct paste_buffer *pb)
return (RB_NEXT(paste_time_tree, &paste_by_time, pb));
}
-/* Get the most recent automatic buffer */
+/* Get the most recent automatic buffer. */
struct paste_buffer *
paste_get_top(void)
{
@@ -81,7 +81,7 @@ paste_get_top(void)
return (pb);
}
-/* Free the most recent buffer */
+/* Free the most recent buffer. */
int
paste_free_top(void)
{