diff options
| author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-20 21:42:29 +0000 |
|---|---|---|
| committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-20 21:42:29 +0000 |
| commit | ceab127fac8b226ea2907261bdd6337b79d5d550 (patch) | |
| tree | 558265c7e58356458b49a433d8fd3b43671251e6 /Makefile | |
| parent | 0be6a3041ff58e716e6e44ff577dcc62685b3613 (diff) | |
| download | rtmux-ceab127fac8b226ea2907261bdd6337b79d5d550.tar.gz rtmux-ceab127fac8b226ea2907261bdd6337b79d5d550.tar.bz2 rtmux-ceab127fac8b226ea2907261bdd6337b79d5d550.zip | |
Mass screen.c rename/tidy. Add a actual size (ysize) as distinct from display size (now dx,dy). Move functions which work on the displayed area into screen-display.c and tidy. Use macros consistently when accessing screen data (may want to move everything about again later!). This the first step on the road to scrollback.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.43 2007-11-20 17:01:38 nicm Exp $ +# $Id: Makefile,v 1.44 2007-11-20 21:42:28 nicm Exp $ .SUFFIXES: .c .o .y .h .PHONY: clean update-index.html upload-index.html @@ -16,17 +16,17 @@ DEBUG= META?= \002 # C-b SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c status.c \ - xmalloc.c xmalloc-debug.c input.c input-keys.c screen.c window.c \ - session.c local.c log.c client.c client-msg.c client-fn.c key-string.c \ - key-bindings.c resize.c cmd.c cmd-new-session.c cmd-detach-client.c \ - cmd-list-sessions.c cmd-new-window.c cmd-next-window.c cmd-bind-key.c \ + xmalloc.c xmalloc-debug.c input.c input-keys.c screen.c screen-display.c \ + window.c session.c local.c log.c client.c client-msg.c client-fn.c \ + key-string.c key-bindings.c resize.c cmd.c cmd-new-session.c \ + cmd-detach-client.c cmd-list-sessions.c cmd-new-window.c cmd-bind-key.c \ cmd-unbind-key.c cmd-previous-window.c cmd-last-window.c cmd-list-keys.c \ cmd-set-option.c cmd-rename-window.c cmd-select-window.c \ cmd-list-windows.c cmd-attach-session.c cmd-send-prefix.c \ cmd-refresh-client.c cmd-kill-window.c cmd-list-clients.c \ - cmd-has-session.c cmd-link-window.c cmd-unlink-window.c \ + cmd-link-window.c cmd-unlink-window.c cmd-next-window.c \ cmd-swap-window.c cmd-rename-session.c cmd-kill-session.c \ - cmd-switch-client.c + cmd-switch-client.c cmd-has-session.c CC?= cc INCDIRS+= -I. -I- -I/usr/local/include |