diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-12 14:46:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-12 14:46:48 +0000 |
commit | 37f17a7e5b42156a325f2f3207610455cb004ad0 (patch) | |
tree | 5ba7b4a68cbc48e8d8a904fc0e4b35582615fca1 /tmux.h | |
parent | 514d6fa1ec60563318c67806334c3b8d97c95b02 (diff) | |
download | rtmux-37f17a7e5b42156a325f2f3207610455cb004ad0.tar.gz rtmux-37f17a7e5b42156a325f2f3207610455cb004ad0.tar.bz2 rtmux-37f17a7e5b42156a325f2f3207610455cb004ad0.zip |
Warn and bork on nested sessions ($TMUX exists).
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.57 2007-10-12 13:51:44 nicm Exp $ */ +/* $Id: tmux.h,v 1.58 2007-10-12 14:46:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -470,6 +470,7 @@ struct cmd_entry { #define CMD_STARTSERVER 0x1 #define CMD_NOSESSION 0x2 +#define CMD_CANTNEST 0x4 int flags; int (*parse)(void **, int, char **, char **); |