diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-11-05 01:19:24 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-11-05 01:19:24 +0000 |
commit | 4198a9c37630ad3bacafae8f27ff6b272feed0b6 (patch) | |
tree | 3dcd0afd2110e34b0d2c287df335bdcdc958c610 /tmux.h | |
parent | 4e4aefaf7ecfbd2df7a3dd371c86422ebb3d69f2 (diff) | |
download | rtmux-4198a9c37630ad3bacafae8f27ff6b272feed0b6.tar.gz rtmux-4198a9c37630ad3bacafae8f27ff6b272feed0b6.tar.bz2 rtmux-4198a9c37630ad3bacafae8f27ff6b272feed0b6.zip |
TAILQ -> SLIST.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.194 2008-11-04 20:41:10 nicm Exp $ */ +/* $Id: tmux.h,v 1.195 2008-11-05 01:19:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -629,7 +629,7 @@ struct session_alert { struct winlink *wl; int type; - TAILQ_ENTRY(session_alert) entry; + SLIST_ENTRY(session_alert) entry; }; struct session { @@ -647,7 +647,7 @@ struct session { struct paste_stack buffers; - TAILQ_HEAD(, session_alert) alerts; + SLIST_HEAD(, session_alert) alerts; #define SESSION_UNATTACHED 0x1 /* not attached to any clients */ int flags; @@ -671,7 +671,7 @@ struct tty_term { #define TERM_256COLOURS 0x2 int flags; - TAILQ_ENTRY(tty_term) entry; + SLIST_ENTRY(tty_term) entry; }; struct tty { |