summaryrefslogtreecommitdiffstats
path: root/client-cmd.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-27 09:15:58 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-27 09:15:58 +0000
commit3fa8f1636486420b9f27b129dbd0f36015d4c24b (patch)
treec018e47c9eb2d78f518a941e7cd87ebe2eb63ab9 /client-cmd.c
parent187648e8d1d6bc80113e829d7895e1c81ddd3c17 (diff)
Adjust $TMUX environ var to include session index, and don't compact session list on release. Also fix some argument types.
Diffstat (limited to 'client-cmd.c')
-rw-r--r--client-cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client-cmd.c b/client-cmd.c
index 9478bd15..94dccd3f 100644
--- a/client-cmd.c
+++ b/client-cmd.c
@@ -1,4 +1,4 @@
-/* $Id: client-cmd.c,v 1.3 2007-09-26 18:50:49 nicm Exp $ */
+/* $Id: client-cmd.c,v 1.4 2007-09-27 09:15:58 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -58,7 +58,7 @@ struct cmd client_cmd_table[] = {
{ 'L', client_cmd_fn_msg, MSG_LAST },
{ 'l', client_cmd_fn_msg, MSG_LAST },
{ 'W', client_cmd_fn_msg, MSG_WINDOWLIST },
- { 'w', client_cmd_fn_msg, MSG_WINDOWLIST }
+ { 'w', client_cmd_fn_msg, MSG_WINDOWLIST },
};
#define NCLIENTCMD (sizeof client_cmd_table / sizeof client_cmd_table[0])