aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-03-28 10:15:01 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-03-28 10:15:01 +0000
commit587badecdb4eed64835e076a589631ceda3bcae5 (patch)
tree5cb0555ac13737faca05ffa743c7a6b4c0d01333 /tmux.h
parenta7f57773b7b3ec6ee1cb435fe393e0b87b6eb332 (diff)
downloadrtmux-587badecdb4eed64835e076a589631ceda3bcae5.tar.gz
rtmux-587badecdb4eed64835e076a589631ceda3bcae5.tar.bz2
rtmux-587badecdb4eed64835e076a589631ceda3bcae5.zip
Clear using ED when redrawing the screen. I foolishly assumed using spaces
would be equivalent and terminals would pick up on this, but apparently not. This fixes copy and paste in xterm/rxvt.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 1945b2b4..9c7f9e28 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.284 2009-03-27 17:04:04 nicm Exp $ */
+/* $Id: tmux.h,v 1.285 2009-03-28 10:15:01 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1065,6 +1065,7 @@ void tty_start_tty(struct tty *);
void tty_stop_tty(struct tty *);
void tty_set_title(struct tty *, const char *);
void tty_update_mode(struct tty *, int);
+void tty_draw_line(struct tty *, struct screen *, u_int, u_int);
int tty_open(struct tty *, char **);
void tty_close(struct tty *, int);
void tty_free(struct tty *, int);