aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-03 05:35:51 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-03 05:35:51 +0000
commitf91e7bfd381826eb88edacc7b5766c262a71b033 (patch)
tree13fdab052b3993bb54adb54bc976afe27b666e94 /tmux.h
parenteaee4dc800734a8ccebb78af02440a8e3d7769bd (diff)
downloadrtmux-f91e7bfd381826eb88edacc7b5766c262a71b033.tar.gz
rtmux-f91e7bfd381826eb88edacc7b5766c262a71b033.tar.bz2
rtmux-f91e7bfd381826eb88edacc7b5766c262a71b033.zip
If no command is specified, assume new-session.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index b56f44cf..d51f5d5c 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.121 2008-06-03 05:10:38 nicm Exp $ */
+/* $Id: tmux.h,v 1.122 2008-06-03 05:35:51 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -654,6 +654,7 @@ struct cmd_entry {
void (*send)(void *, struct buffer *);
void (*recv)(void **, struct buffer *);
void (*free)(void *);
+ void (*init)(void **, int);
};
/* Key binding. */
@@ -764,7 +765,6 @@ extern const struct cmd_entry cmd_swap_window_entry;
extern const struct cmd_entry cmd_switch_client_entry;
extern const struct cmd_entry cmd_unbind_key_entry;
extern const struct cmd_entry cmd_unlink_window_entry;
-void cmd_select_window_default(void **, int);
/* cmd-generic.c */
#define CMD_CLIENTONLY_USAGE "[-c client-tty]"