diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-09-02 20:01:22 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-09-02 20:01:22 +0000 |
commit | c23bde74ec034f864410c9b71c3ef72d122df719 (patch) | |
tree | b82387916d645b6039c9b6842543e43b83716735 /tmux.h | |
parent | ecffcf16677bec14465e5ab04198cf67bfdad4b5 (diff) | |
download | rtmux-c23bde74ec034f864410c9b71c3ef72d122df719.tar.gz rtmux-c23bde74ec034f864410c9b71c3ef72d122df719.tar.bz2 rtmux-c23bde74ec034f864410c9b71c3ef72d122df719.zip |
Set exittype for error exit as well as the error string.
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.431 2009-09-02 01:02:44 tcunha Exp $ */ +/* $Id: tmux.h,v 1.432 2009-09-02 20:01:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -971,6 +971,7 @@ struct client_ctx { CCTX_EXIT, CCTX_DIED, CCTX_SHUTDOWN, + CCTX_ERROR } exittype; const char *errstr; }; |