From 6c442c19ba8a6a5817e835b035a6ac5deb52a0a4 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 21 May 2009 19:46:00 +0000 Subject: UPPER -> BIG, sort, and bump protocol version. --- tmux.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index e12a9e47..1ac668fe 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.325 2009-05-19 16:08:35 nicm Exp $ */ +/* $Id: tmux.h,v 1.326 2009-05-21 19:46:00 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -21,7 +21,7 @@ #include "config.h" -#define PROTOCOL_VERSION -12 +#define PROTOCOL_VERSION -13 /* Shut up gcc warnings about empty if bodies. */ #define RB_AUGMENT(x) do {} while (0) @@ -917,13 +917,13 @@ struct cmd_entry { #define CMD_CANTNEST 0x2 #define CMD_ARG1 0x4 #define CMD_ARG01 0x8 -#define CMD_KFLAG 0x10 +#define CMD_AFLAG 0x10 #define CMD_DFLAG 0x20 #define CMD_GFLAG 0x40 -#define CMD_UFLAG 0x80 -#define CMD_AFLAG 0x100 -#define CMD_UPPERUFLAG 0x200 -#define CMD_UPPERDFLAG 0x400 +#define CMD_KFLAG 0x80 +#define CMD_UFLAG 0x100 +#define CMD_BIGDFLAG 0x200 +#define CMD_BIGUFLAG 0x400 int flags; -- cgit