diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-18 17:02:18 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-18 17:02:18 +0000 |
commit | 52a1bf0505be729040b1a19208229c945a958caf (patch) | |
tree | 0107f42937859e68d192adee15adbd13b755de28 /usr.bin/tmux/Makefile | |
parent | e33df98b55285d194871e65c988fd48970c8c06c (diff) |
Cleanup by moving various (mostly horrible) little bits handling UTF-8 grid
data into functions in a new file, grid-utf8.c, and use sizeof intead of
UTF8_DATA.
Also nuke trailing whitespace from tmux.1, reminded by jmc.
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 1d2cd72c773..b0a828ef2f9 100644 --- a/usr.bin/tmux/Makefile +++ b/usr.bin/tmux/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.29 2009/11/18 13:16:33 nicm Exp $ +# $OpenBSD: Makefile,v 1.30 2009/11/18 17:02:17 nicm Exp $ PROG= tmux SRCS= attributes.c cfg.c client.c clock.c \ @@ -30,7 +30,7 @@ SRCS= attributes.c cfg.c client.c clock.c \ cmd-set-environment.c cmd-show-environment.c cmd-choose-client.c \ cmd-up-pane.c cmd-display-message.c cmd-display-panes.c \ cmd-pipe-pane.c cmd.c \ - colour.c environ.c grid-view.c grid.c input-keys.c \ + colour.c environ.c grid-view.c grid-utf8.c grid.c input-keys.c \ imsg.c imsg-buffer.c input.c key-bindings.c key-string.c \ layout-set.c layout.c log.c job.c \ mode-key.c names.c options-cmd.c options.c paste.c procname.c \ |