aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-09-02 20:01:22 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-09-02 20:01:22 +0000
commitc23bde74ec034f864410c9b71c3ef72d122df719 (patch)
treeb82387916d645b6039c9b6842543e43b83716735 /tmux.h
parentecffcf16677bec14465e5ab04198cf67bfdad4b5 (diff)
downloadrtmux-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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 8a793561..1e1d5208 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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;
};