diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-05-14 06:21:20 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-05-14 06:21:20 +0000 |
commit | 1101cfc744496d5313389429488d8fd7773bfec6 (patch) | |
tree | 8099b90812dd0f550156801cdbc259cdc985bc17 /usr.bin/tmux/server.c | |
parent | 3464c18d1fdda01444b65f52f810987ed7d85c43 (diff) |
Now that cmdlists are reference counted, there is no need for two-step
deletion via the dead_key_bindings tree. From Keith Amling.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r-- | usr.bin/tmux/server.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c index 2a7e1431633..f3706aed213 100644 --- a/usr.bin/tmux/server.c +++ b/usr.bin/tmux/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.113 2014/04/24 09:14:43 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.114 2014/05/14 06:21:19 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -208,7 +208,6 @@ server_loop(void) server_window_loop(); server_client_loop(); - key_bindings_clean(); server_clean_dead(); } } |