diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-04 19:20:10 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-04 19:20:10 +0000 |
commit | 7842d2967383f119dbbcc3967caebee5407e939b (patch) | |
tree | fa359e0b2727671e24eeb89a29667d92dac01430 /tmux.h | |
parent | 39be570b2079c38609ae6cc6c6e2bf937649d481 (diff) | |
download | rtmux-7842d2967383f119dbbcc3967caebee5407e939b.tar.gz rtmux-7842d2967383f119dbbcc3967caebee5407e939b.tar.bz2 rtmux-7842d2967383f119dbbcc3967caebee5407e939b.zip |
Revert attempt to fix stray updates, turns out it was clock :-/.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.130 2008-06-04 18:50:35 nicm Exp $ */ +/* $Id: tmux.h,v 1.131 2008-06-04 19:20:10 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -919,8 +919,6 @@ void input_parse(struct window *); void input_key(struct window *, int); /* screen-display.c */ -void screen_display_get_cell( - struct screen *, u_int, u_int, u_char *, u_char *, u_char *); void screen_display_set_cell( struct screen *, u_int, u_int, u_char, u_char, u_char); void screen_display_make_lines(struct screen *, u_int, u_int); @@ -948,7 +946,7 @@ void screen_write_start(struct screen_write_ctx *, struct screen *, void (*)(void *, int, ...), void *); void screen_write_stop(struct screen_write_ctx *); void screen_write_set_title(struct screen_write_ctx *, char *); -int screen_write_put_character(struct screen_write_ctx *, u_char); +void screen_write_put_character(struct screen_write_ctx *, u_char); size_t printflike2 screen_write_put_string_rjust( struct screen_write_ctx *, const char *, ...); void printflike2 screen_write_put_string( |