=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.366 retrieving revision 1.367 diff -c -r1.366 -r1.367 *** src/usr.bin/tmux/tmux.h 2012/11/27 20:08:42 1.366 --- src/usr.bin/tmux/tmux.h 2012/11/27 20:22:12 1.367 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.366 2012/11/27 20:08:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.367 2012/11/27 20:22:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1682,1689 **** struct tty_term *, enum tty_code_code, int, int); const char *tty_term_ptr1( struct tty_term *, enum tty_code_code, const void *); ! const char *tty_term_ptr2( ! struct tty_term *, enum tty_code_code, const void *, const void *); int tty_term_number(struct tty_term *, enum tty_code_code); int tty_term_flag(struct tty_term *, enum tty_code_code); --- 1682,1689 ---- struct tty_term *, enum tty_code_code, int, int); const char *tty_term_ptr1( struct tty_term *, enum tty_code_code, const void *); ! const char *tty_term_ptr2(struct tty_term *, enum tty_code_code, ! const void *, const void *); int tty_term_number(struct tty_term *, enum tty_code_code); int tty_term_flag(struct tty_term *, enum tty_code_code); *************** *** 1704,1710 **** --- 1704,1713 ---- void paste_add(struct paste_stack *, char *, size_t, u_int); int paste_replace(struct paste_stack *, u_int, char *, size_t); char *paste_print(struct paste_buffer *, size_t); + void paste_send_pane(struct paste_buffer *, struct window_pane *, + const char *, int); + /* clock.c */ extern const char clock_table[14][5][5]; void clock_draw(struct screen_write_ctx *, int, int); *************** *** 1906,1912 **** void server_destroy_pane(struct window_pane *); void server_destroy_session_group(struct session *); void server_destroy_session(struct session *); ! void server_check_unattached (void); void server_set_identify(struct client *); void server_clear_identify(struct client *); void server_update_event(struct client *); --- 1909,1915 ---- void server_destroy_pane(struct window_pane *); void server_destroy_session_group(struct session *); void server_destroy_session(struct session *); ! void server_check_unattached(void); void server_set_identify(struct client *); void server_clear_identify(struct client *); void server_update_event(struct client *);