summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2011-07-08 06:28:05 +0000
committernicm <nicm@openbsd.org>2011-07-08 06:28:05 +0000
commit5ea6a24a27feadd84492936f16890f8213080200 (patch)
tree1e2f5fd9b0e46ff2ccc4c545303cf34d913db66a
parentUpdate regress tests for the following changes: (diff)
downloadwireguard-openbsd-5ea6a24a27feadd84492936f16890f8213080200.tar.xz
wireguard-openbsd-5ea6a24a27feadd84492936f16890f8213080200.zip
Fix a couple of comments.
-rw-r--r--usr.bin/tmux/input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c
index 816b1244f00..df0af355bcf 100644
--- a/usr.bin/tmux/input.c
+++ b/usr.bin/tmux/input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: input.c,v 1.39 2011/05/20 19:17:39 nicm Exp $ */
+/* $OpenBSD: input.c,v 1.40 2011/07/08 06:28:05 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -555,7 +555,7 @@ const struct input_transition input_state_dcs_escape_table[] = {
{ -1, -1, NULL, NULL }
};
-/* device_ignore state table. */
+/* dcs_ignore state table. */
const struct input_transition input_state_dcs_ignore_table[] = {
INPUT_STATE_ANYWHERE,
@@ -791,7 +791,7 @@ input_split(struct input_ctx *ictx)
return (0);
}
-/* Get an argument or return default value..*/
+/* Get an argument or return default value. */
int
input_get(struct input_ctx *ictx, u_int validx, int minval, int defval)
{