diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-10 05:50:55 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-10 05:50:55 +0000 |
commit | 68a0f9c7c08774fdd34a259e91c1d9898cc73262 (patch) | |
tree | 4fe4baed01bdd3055c9bb6b24d5ad56cb57b6058 /usr.bin/tmux/tmux.h | |
parent | 027f5fa01a6342a349399eafe782c76d0edcd7dc (diff) |
Add a default-terminal option to set the starting value of $TERM in new
windows.
This is "screen" by default and must be either that or something closely
related. This does makes it easier to customise it if necessary.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 2b58c031899..c75750a2aa2 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.19 2009/07/09 15:47:49 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.20 2009/07/10 05:50:54 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -935,7 +935,7 @@ struct set_option_entry { }; extern const struct set_option_entry set_option_table[]; extern const struct set_option_entry set_window_option_table[]; -#define NSETOPTION 25 +#define NSETOPTION 26 #define NSETWINDOWOPTION 19 /* tmux.c */ |