Sync OpenBSD patchset 803:

Dead sessions are never on the active sessions list, so the SESSION_DEAD
flag is effectively unused. Remove it.
This commit is contained in:
Tiago Cunha
2010-12-22 15:31:56 +00:00
parent bb728b89a7
commit a932742a8a
2 changed files with 6 additions and 8 deletions

3
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.589 2010-12-22 15:31:00 tcunha Exp $ */
/* $Id: tmux.h,v 1.590 2010-12-22 15:31:56 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -946,7 +946,6 @@ struct session {
struct paste_stack buffers;
#define SESSION_UNATTACHED 0x1 /* not attached to any clients */
#define SESSION_DEAD 0x2
int flags;
struct termios *tio;