diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-22 20:56:59 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-22 20:56:59 +0000 |
commit | efd6f207b9899daa311ce5273c5bc3a538f7a67b (patch) | |
tree | c9a308fec793129f93c7c012e10001fb68fcc195 /usr.bin/tmux/Makefile | |
parent | a863befefddbb0946b94179c2685e6e7479effdd (diff) |
tty_write is relatively short and the only function left in tty-write.c so move
it into tty.c.
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 9f371d71814..9f430f13a03 100644 --- a/usr.bin/tmux/Makefile +++ b/usr.bin/tmux/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2009/07/19 13:21:40 nicm Exp $ +# $OpenBSD: Makefile,v 1.10 2009/07/22 20:56:58 nicm Exp $ PROG= tmux SRCS= attributes.c buffer-poll.c buffer.c cfg.c client-fn.c \ @@ -31,7 +31,7 @@ SRCS= attributes.c buffer-poll.c buffer.c cfg.c client-fn.c \ mode-key.c names.c options-cmd.c options.c paste.c procname.c \ resize.c screen-redraw.c screen-write.c screen.c server-fn.c \ server-msg.c server.c session.c status.c tmux.c tty-keys.c tty-term.c \ - tty-write.c tty.c utf8.c window-choose.c window-clock.c \ + tty.c utf8.c window-choose.c window-clock.c \ window-copy.c window-more.c window-scroll.c window.c xmalloc.c CDIAGFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2 |