aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-26 18:32:17 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-26 18:32:17 +0000
commit8d019841828d30beee5c78500b07f0c80e69457e (patch)
treee9238a4e69073bebb8e3152083395e097134247a /tmux.c
parent2aacbe764c90218cb8383efbd4f6f74812b3b00c (diff)
downloadrtmux-8d019841828d30beee5c78500b07f0c80e69457e.tar.gz
rtmux-8d019841828d30beee5c78500b07f0c80e69457e.tar.bz2
rtmux-8d019841828d30beee5c78500b07f0c80e69457e.zip
Restore list command.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index bc5718fd..8b996316 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.10 2007-09-26 14:08:16 nicm Exp $ */
+/* $Id: tmux.c,v 1.11 2007-09-26 18:32:16 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -43,7 +43,7 @@ struct op {
int (*fn)(char *, int, char **);
};
struct op op_table[] = {
-// { "list", op_list },
+ { "list", op_list },
{ "new", op_new },
{ "attach", op_attach }
};