diff options
author | 2009-10-26 21:42:04 +0000 | |
---|---|---|
committer | 2009-10-26 21:42:04 +0000 | |
commit | 3abb34e338a756ee0ca5032884c166e0282ede7b (patch) | |
tree | b55bf38f0b9e21525f858d727afce6a5675cd8aa /usr.bin/tmux/input.c | |
parent | Clear signal flags /before/ taking action and continue afterwards to reduce (diff) | |
download | wireguard-openbsd-3abb34e338a756ee0ca5032884c166e0282ede7b.tar.xz wireguard-openbsd-3abb34e338a756ee0ca5032884c166e0282ede7b.zip |
tabs are better; ok nicm
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r-- | usr.bin/tmux/input.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index 223b0d85e55..2e6a4d5da5e 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.20 2009/10/23 15:48:39 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.21 2009/10/26 21:42:04 deraadt Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -128,7 +128,7 @@ input_sequence_cmp(const void *a, const void *b) void input_new_argument(struct input_ctx *ictx) { - struct input_arg *arg; + struct input_arg *arg; ARRAY_EXPAND(&ictx->args, 1); @@ -139,7 +139,7 @@ input_new_argument(struct input_ctx *ictx) int input_add_argument(struct input_ctx *ictx, u_char ch) { - struct input_arg *arg; + struct input_arg *arg; if (ARRAY_LENGTH(&ictx->args) == 0) return (0); @@ -792,7 +792,7 @@ input_handle_sequence(u_char ch, struct input_ctx *ictx) { struct input_sequence_entry *entry, find; struct screen *s = ictx->ctx.s; - u_int i; + u_int i; struct input_arg *iarg; log_debug2("-- sq %zu: %hhu (%c): %u [sx=%u, sy=%u, cx=%u, cy=%u, " |