aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2011-02-15 15:12:28 +0000
committerTiago Cunha <tcunha@gmx.com>2011-02-15 15:12:28 +0000
commit3b56ebce6dd4077f6527843cfc1da63614605875 (patch)
tree1d5b128f729a45a7c1701d174bba81c37d733102 /tmux.h
parent2ab568fa88cb40e0d63696d60b9e871a9909074d (diff)
downloadrtmux-3b56ebce6dd4077f6527843cfc1da63614605875.tar.gz
rtmux-3b56ebce6dd4077f6527843cfc1da63614605875.tar.bz2
rtmux-3b56ebce6dd4077f6527843cfc1da63614605875.zip
Sync OpenBSD patchset 854:
Use LIST_* not SLIST_*.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tmux.h b/tmux.h
index 865e654b..a5f497fc 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.608 2011-02-15 15:10:47 tcunha Exp $ */
+/* $Id: tmux.h,v 1.609 2011-02-15 15:12:28 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -680,10 +680,10 @@ struct job {
#define JOB_PERSIST 0x1 /* don't free after callback */
RB_ENTRY(job) entry;
- SLIST_ENTRY(job) lentry;
+ LIST_ENTRY(job) lentry;
};
RB_HEAD(jobs, job);
-SLIST_HEAD(joblist, job);
+LIST_HEAD(joblist, job);
/* Screen selection. */
struct screen_sel {
@@ -986,9 +986,9 @@ struct tty_term {
#define TERM_EARLYWRAP 0x4
int flags;
- SLIST_ENTRY(tty_term) entry;
+ LIST_ENTRY(tty_term) entry;
};
-SLIST_HEAD(tty_terms, tty_term);
+LIST_HEAD(tty_terms, tty_term);
struct tty {
char *path;