aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile7
-rw-r--r--TODO1
-rw-r--r--server-msg.c3
3 files changed, 6 insertions, 5 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 7c3354f1..ba1755db 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,4 +1,4 @@
-# $Id: GNUmakefile,v 1.9 2007-12-06 09:46:21 nicm Exp $
+# $Id: GNUmakefile,v 1.10 2007-12-13 18:59:42 nicm Exp $
.PHONY: clean
@@ -13,7 +13,7 @@ META?= \002
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 screen-display.c \
- window.c session.c local.c log.c client.c client-msg.c client-fn.c \
+ window.c session.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 \
@@ -23,7 +23,8 @@ SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c status.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-has-session.c cmd-scroll-mode.c cmd-copy-mode.c \
- cmd-paste-buffer.c window-scroll.c window-more.c window-copy.c
+ cmd-paste-buffer.c window-scroll.c window-more.c window-copy.c \
+ tty.c tty-keys.c tty-write.c screen-write.c screen-redraw.c
CC?= gcc
INCDIRS+= -I. -I-
diff --git a/TODO b/TODO
index e9eb4103..75c3715b 100644
--- a/TODO
+++ b/TODO
@@ -63,6 +63,7 @@
or tailqs? what would be fastest per-char?
- multiple paste buffers
- window splitting?
+- if only one arg to switch-window, assume source-index
-- For 0.2 --------------------------------------------------------------------
- anything which uses cmd_{send,recv}_string will break if the string is
diff --git a/server-msg.c b/server-msg.c
index d5cc54ad..d92aa3c1 100644
--- a/server-msg.c
+++ b/server-msg.c
@@ -1,5 +1,4 @@
-
-/* $Id: server-msg.c,v 1.42 2007-12-12 19:44:59 nicm Exp $ */
+/* $Id: server-msg.c,v 1.43 2007-12-13 18:59:42 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>