summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2009-09-24 14:17:09 +0000
committernicm <nicm@openbsd.org>2009-09-24 14:17:09 +0000
commit168ee6d36b157beda8a5b4d15b446c4e21e95910 (patch)
tree565137de8301bf7d0492f56f847a4ffe88e82d7f /usr.bin/tmux/cmd.c
parentPriorities are now handled in the kernel so: (diff)
downloadwireguard-openbsd-168ee6d36b157beda8a5b4d15b446c4e21e95910.tar.xz
wireguard-openbsd-168ee6d36b157beda8a5b4d15b446c4e21e95910.zip
New lock-client and lock-session commands to lock an individual client or all
clients attached to a session respectively.
Diffstat (limited to 'usr.bin/tmux/cmd.c')
-rw-r--r--usr.bin/tmux/cmd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd.c b/usr.bin/tmux/cmd.c
index 6c10d355729..e1fa8f89c0b 100644
--- a/usr.bin/tmux/cmd.c
+++ b/usr.bin/tmux/cmd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd.c,v 1.18 2009/09/23 06:18:47 nicm Exp $ */
+/* $OpenBSD: cmd.c,v 1.19 2009/09/24 14:17:09 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -61,7 +61,9 @@ const struct cmd_entry *cmd_table[] = {
&cmd_list_sessions_entry,
&cmd_list_windows_entry,
&cmd_load_buffer_entry,
+ &cmd_lock_client_entry,
&cmd_lock_server_entry,
+ &cmd_lock_session_entry,
&cmd_move_window_entry,
&cmd_new_session_entry,
&cmd_new_window_entry,