diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-27 09:15:58 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-27 09:15:58 +0000 |
commit | 3fa8f1636486420b9f27b129dbd0f36015d4c24b (patch) | |
tree | c018e47c9eb2d78f518a941e7cd87ebe2eb63ab9 /client-cmd.c | |
parent | 187648e8d1d6bc80113e829d7895e1c81ddd3c17 (diff) | |
download | rtmux-3fa8f1636486420b9f27b129dbd0f36015d4c24b.tar.gz rtmux-3fa8f1636486420b9f27b129dbd0f36015d4c24b.tar.bz2 rtmux-3fa8f1636486420b9f27b129dbd0f36015d4c24b.zip |
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.c | 4 |
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]) |