mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 14:27:09 +00:00
That was the wrong fix. MSG_ERROR should set the error and the client should
use the error and exit on MSG_EXIT (it was being handled in the default case). Undo the last change, move the errstr check into the MSG_EXIT case, and add a comment.
This commit is contained in:
5
tmux.h
5
tmux.h
@ -1,4 +1,4 @@
|
||||
/* $Id: tmux.h,v 1.432 2009-09-02 20:01:22 nicm Exp $ */
|
||||
/* $Id: tmux.h,v 1.433 2009-09-02 20:16:29 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -970,8 +970,7 @@ struct client_ctx {
|
||||
CCTX_DETACH,
|
||||
CCTX_EXIT,
|
||||
CCTX_DIED,
|
||||
CCTX_SHUTDOWN,
|
||||
CCTX_ERROR
|
||||
CCTX_SHUTDOWN
|
||||
} exittype;
|
||||
const char *errstr;
|
||||
};
|
||||
|
Reference in New Issue
Block a user