diff options
author | 2014-06-20 11:00:19 +0000 | |
---|---|---|
committer | 2014-06-20 11:00:19 +0000 | |
commit | a54272040a00a8b56dfcc10e800ecb7434168426 (patch) | |
tree | aed135a3dd751773a7832741f656ba84f5aebddc /usr.bin/tmux/paste.c | |
parent | Make -S- and -E- mean the start and end to capture-pane to avoid having (diff) | |
download | wireguard-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.c | 6 |
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) { |