diff options
author | 2009-11-27 09:41:03 +0000 | |
---|---|---|
committer | 2009-11-27 09:41:03 +0000 | |
commit | a3ac0349068ab88a5eb4a519b7f19d43d5342e14 (patch) | |
tree | 5e886ad84dbd5bdb34147106b1ac8f5d2b3ae93b /usr.bin/tmux/input.c | |
parent | typo in documentation; missing full stop. (diff) | |
download | wireguard-openbsd-a3ac0349068ab88a5eb4a519b7f19d43d5342e14.tar.xz wireguard-openbsd-a3ac0349068ab88a5eb4a519b7f19d43d5342e14.zip |
Add a couple of comments.
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r-- | usr.bin/tmux/input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index f393b093d02..0cff5a316e6 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.22 2009/11/04 22:43:11 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.23 2009/11/27 09:41:03 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -266,6 +266,7 @@ input_parse(struct window_pane *wp) ictx->wp = wp; + /* If there is a mode set, don't want to update the screen. */ if (wp->mode == NULL) screen_write_start(&ictx->ctx, wp, &wp->base); else |