summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-30 16:32:12 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-30 16:32:12 +0000
commit5f13bb0c3ade513ec3f88af8b6c0f575fa00cc4b (patch)
treec5951ede730fd867a6b658479574472d8eb1bcfa /Makefile
parent479d614884f66e9fa11f1292a2ef36991da46c1d (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 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b565c44b..ccd472cf 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
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 \