diff options
author | 2009-12-17 17:39:56 +0000 | |
---|---|---|
committer | 2009-12-17 17:39:56 +0000 | |
commit | 3904313c14f496a9965d9fc3c2018eceed28fc36 (patch) | |
tree | dd20e4296cfcdaf2289722ae4a115a45e9bfd85c /usr.bin/tmux/tmux.h | |
parent | if anyone vref()s a VNON vnode, panic. This should not happen. (diff) | |
download | wireguard-openbsd-3904313c14f496a9965d9fc3c2018eceed28fc36.tar.xz wireguard-openbsd-3904313c14f496a9965d9fc3c2018eceed28fc36.zip |
Allow keys to be replaced and reorder the table so that terminfo-defined keys
(or terminal-overrides) take precedence over internally defined.
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 855a3839e2e..4907d3fd30b 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.195 2009/12/14 10:43:41 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.196 2009/12/17 17:39:56 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1021,9 +1021,9 @@ struct tty_ctx { const struct grid_utf8 *utf8; u_int num; - void *ptr; + void *ptr; - /* + /* * Cursor and region position before the screen was updated - this is * where the command should be applied; the values in the screen have * already been updated. |