=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.14 retrieving revision 1.15 diff -c -r1.14 -r1.15 *** src/usr.bin/tmux/tmux.h 2009/06/25 22:08:15 1.14 --- src/usr.bin/tmux/tmux.h 2009/06/26 19:44:36 1.15 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.14 2009/06/25 22:08:15 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.15 2009/06/26 19:44:36 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1217,1223 **** /* client.c */ int client_init(char *, struct client_ctx *, int, int); - int client_flush(struct client_ctx *); int client_main(struct client_ctx *); /* client-msg.c */ --- 1217,1222 ---- *************** *** 1406,1413 **** struct screen *, u_int, u_int, u_int, u_int, struct grid_cell *); void screen_clear_selection(struct screen *); int screen_check_selection(struct screen *, u_int, u_int); - void screen_display_copy_area(struct screen *, struct screen *, - u_int, u_int, u_int, u_int, u_int, u_int); /* window.c */ extern struct windows windows; --- 1405,1410 ---- *************** *** 1443,1449 **** int window_pane_spawn(struct window_pane *, const char *, const char *, const char **, char **); int window_pane_resize(struct window_pane *, u_int, u_int); - void window_calculate_sizes(struct window *); int window_pane_set_mode( struct window_pane *, const struct window_mode *); void window_pane_reset_mode(struct window_pane *); --- 1440,1445 ---- *************** *** 1561,1566 **** int xvasprintf(char **, const char *, va_list); int printflike3 xsnprintf(char *, size_t, const char *, ...); int xvsnprintf(char *, size_t, const char *, va_list); - int printflike3 printpath(char *, size_t, const char *, ...); #endif /* TMUX_H */ --- 1557,1561 ----