Revert attempt to fix stray updates, turns out it was clock :-/.

This commit is contained in:
Nicholas Marriott
2008-06-04 19:20:10 +00:00
parent 39be570b20
commit 7842d29673
5 changed files with 14 additions and 30 deletions

6
tmux.h
View File

@ -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(