1
0
mirror of https://github.com/tmate-io/tmate-ssh-server.git synced 2020-11-18 19:53:51 -08:00

Style tweaks.

This commit is contained in:
Nicholas Marriott 2008-09-08 22:18:03 +00:00
parent 6674197e85
commit d4173e2a78

14
tmux.h
View File

@ -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> * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -399,10 +399,10 @@ struct msg_resize_data {
#define ATTR_BG256 0x200 #define ATTR_BG256 0x200
/* Modes. */ /* Modes. */
#define MODE_CURSOR 0x01 #define MODE_CURSOR 0x1
#define MODE_INSERT 0x02 #define MODE_INSERT 0x2
#define MODE_KCURSOR 0x04 #define MODE_KCURSOR 0x4
#define MODE_KKEYPAD 0x08 #define MODE_KKEYPAD 0x8
#define MODE_SAVED 0x10 #define MODE_SAVED 0x10
#define MODE_MOUSE 0x20 #define MODE_MOUSE 0x20
@ -675,8 +675,8 @@ struct tty_term {
TERMINAL *term; TERMINAL *term;
u_int references; u_int references;
#define TERM_HASDEFAULTS 0x01 #define TERM_HASDEFAULTS 0x1
#define TERM_256COLOURS 0x02 #define TERM_256COLOURS 0x2
int flags; int flags;
TAILQ_ENTRY(tty_term) entry; TAILQ_ENTRY(tty_term) entry;