summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2011-07-08 06:28:06 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2011-07-08 06:28:06 +0000
commitc6f9982ea401963ae1092e0af8c210975bd9e0f8 (patch)
tree7b7e9c08fd2d8b8f4ff9974e83e47173f93d60d3 /usr.bin
parent1da768258e525e8eb2ba9fc2fb7acd2f6f6c4629 (diff)
Fix a couple of comments.
Diffstat (limited to 'usr.bin')
-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)
{