diff options
author | 2017-02-08 23:53:03 +0000 | |
---|---|---|
committer | 2017-02-08 23:53:03 +0000 | |
commit | ad104ef552a1292003c01ab0cb526e2bc87119e1 (patch) | |
tree | aea78adf2555ee9e9388d9fd33169e1de507732c /usr.bin/tmux/tmux.h | |
parent | Add a common function to invalidate all the terminal cached state. (diff) | |
download | wireguard-openbsd-ad104ef552a1292003c01ab0cb526e2bc87119e1.tar.xz wireguard-openbsd-ad104ef552a1292003c01ab0cb526e2bc87119e1.zip |
Another helper function to write to terminal and log.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 25e783eeb61..90532e4ecd8 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.722 2017/02/08 23:47:35 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.723 2017/02/08 23:53:03 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1086,9 +1086,9 @@ struct tty { /* TTY command context. */ struct tty_ctx { - struct window_pane *wp; + struct window_pane *wp; - const struct grid_cell *cell; + const struct grid_cell *cell; u_int num; void *ptr; |