aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-09-08 22:18:03 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-09-08 22:18:03 +0000
commitd4173e2a783fe5e3041d801bb49cca8bc6160eeb (patch)
tree45b7f0d6248e8c62d8ff5a0493b57872fe8c3c9c /tmux.h
parent6674197e853ddec4ab1af04ede3ebabcdcc581c5 (diff)
downloadrtmux-d4173e2a783fe5e3041d801bb49cca8bc6160eeb.tar.gz
rtmux-d4173e2a783fe5e3041d801bb49cca8bc6160eeb.tar.bz2
rtmux-d4173e2a783fe5e3041d801bb49cca8bc6160eeb.zip
Style tweaks.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/tmux.h b/tmux.h
index d9a19e89..61bf5935 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.184 2008-09-08 22:03:54 nicm Exp $ */
+/* $Id: tmux.h,v 1.185 2008-09-08 22:18:03 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -399,10 +399,10 @@ struct msg_resize_data {
#define ATTR_BG256 0x200
/* Modes. */
-#define MODE_CURSOR 0x01
-#define MODE_INSERT 0x02
-#define MODE_KCURSOR 0x04
-#define MODE_KKEYPAD 0x08
+#define MODE_CURSOR 0x1
+#define MODE_INSERT 0x2
+#define MODE_KCURSOR 0x4
+#define MODE_KKEYPAD 0x8
#define MODE_SAVED 0x10
#define MODE_MOUSE 0x20
@@ -675,8 +675,8 @@ struct tty_term {
TERMINAL *term;
u_int references;
-#define TERM_HASDEFAULTS 0x01
-#define TERM_256COLOURS 0x02
+#define TERM_HASDEFAULTS 0x1
+#define TERM_256COLOURS 0x2
int flags;
TAILQ_ENTRY(tty_term) entry;