From aaa98ab4a2d70014ecae09941f292775d08fa7ee Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 3 Oct 2007 12:43:47 +0000 Subject: Rename some bits. --- tmux.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 6b95f993..58ed9f93 100644 --- a/tmux.c +++ b/tmux.c @@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.22 2007-10-03 12:34:16 nicm Exp $ */ +/* $Id: tmux.c,v 1.23 2007-10-03 12:43:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -47,11 +47,11 @@ struct op { }; const struct op op_table[] = { { "attach", NULL, op_attach }, + { "bind-key", "bind", op_bind_key }, { "list-sessions", "ls", op_list_sessions }, { "list-windows", "lsw", op_list_windows }, - { "new-session", "new", op_new/*_session*/ }, - { "rename-window", "renw", op_rename }, - { "bind-key", "bind", op_bind_key }, + { "new-session", "new", op_new_session }, + { "rename-window", "renw", op_rename_window }, { "unbind-key", "unbind", op_unbind_key }, }; #define NOP (sizeof op_table / sizeof op_table[0]) -- cgit v1.2.3