=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.1120 retrieving revision 1.1121 diff -c -r1.1120 -r1.1121 *** src/usr.bin/tmux/tmux.h 2021/08/13 18:54:54 1.1120 --- src/usr.bin/tmux/tmux.h 2021/08/13 19:27:25 1.1121 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.1120 2021/08/13 18:54:54 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.1121 2021/08/13 19:27:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 2042,2047 **** --- 2042,2048 ---- const char *, job_update_cb, job_complete_cb, job_free_cb, void *, int, int, int); void job_free(struct job *); + int job_transfer(struct job *); void job_resize(struct job *, u_int, u_int); void job_check_died(pid_t, int); int job_get_status(struct job *); *************** *** 3038,3043 **** --- 3039,3045 ---- #define POPUP_CLOSEEXIT 0x1 #define POPUP_CLOSEEXITZERO 0x2 #define POPUP_NOBORDER 0x4 + #define POPUP_INTERNAL 0x8 typedef void (*popup_close_cb)(int, void *); typedef void (*popup_finish_edit_cb)(char *, size_t, void *); int popup_display(int, struct cmdq_item *, u_int, u_int, u_int,