From 4a325c8f9366a1c7643d193ff2e613bbc91ce144 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 26 Oct 2007 16:57:32 +0000 Subject: unlink-window command. Also fix some u_int -> int problems. --- tmux.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 9ff5362b..327a612e 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.72 2007-10-26 13:03:59 nicm Exp $ */ +/* $Id: tmux.h,v 1.73 2007-10-26 16:57:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -558,6 +558,7 @@ extern const struct cmd_entry cmd_select_window_entry; extern const struct cmd_entry cmd_send_prefix_entry; extern const struct cmd_entry cmd_set_option_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); /* client.c */ @@ -706,7 +707,7 @@ int session_detach(struct session *, struct winlink *); int session_has(struct session *, struct window *); int session_next(struct session *); int session_previous(struct session *); -int session_select(struct session *, u_int); +int session_select(struct session *, int); int session_last(struct session *); /* buffer.c */ -- cgit