diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-30 16:32:13 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-30 16:32:13 +0000 |
commit | e0035a735befa3d84920b3b249343f51f6976856 (patch) | |
tree | 1588f9f14c90cac7d856265578d800b18148d6f4 /usr.bin/tmux/Makefile | |
parent | c35ab0a285eb57ac1d66e22b7890d77060f3eb2d (diff) |
There aren't many client message types or code to handle them so get rid of the
lookup table and use a switch, merge the tiny handler functions into it, and
move the whole lot to client.c.
Also change client_msg_dispatch to consume as many messages as possible and
move the call to it to the right place so it checks for signals afterwards.
Prompted by suggestions from eric@.
Diffstat (limited to 'usr.bin/tmux/Makefile')
-rw-r--r-- | usr.bin/tmux/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/Makefile b/usr.bin/tmux/Makefile index 9f430f13a03..f6712aab1ae 100644 --- a/usr.bin/tmux/Makefile +++ b/usr.bin/tmux/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.10 2009/07/22 20:56:58 nicm Exp $ +# $OpenBSD: Makefile,v 1.11 2009/07/30 16:32:12 nicm Exp $ PROG= tmux SRCS= attributes.c buffer-poll.c buffer.c cfg.c client-fn.c \ - client-msg.c client.c clock.c cmd-attach-session.c cmd-bind-key.c \ + client.c clock.c cmd-attach-session.c cmd-bind-key.c \ cmd-break-pane.c cmd-choose-session.c cmd-choose-window.c \ cmd-clear-history.c cmd-clock-mode.c cmd-command-prompt.c \ cmd-confirm-before.c cmd-copy-buffer.c cmd-copy-mode.c \ |