mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
A similar for fix for window_choose: don't rely on the callback always being
called to free data, have a separate free callback and call it from the mode cleanup code.
This commit is contained in:
2
tmux.h
2
tmux.h
@ -1490,7 +1490,7 @@ void window_choose_vadd(
|
||||
void printflike3 window_choose_add(
|
||||
struct window_pane *, int, const char *, ...);
|
||||
void window_choose_ready(struct window_pane *,
|
||||
u_int, void (*)(void *, int), void *);
|
||||
u_int, void (*)(void *, int), void (*)(void *), void *);
|
||||
|
||||
/* names.c */
|
||||
void set_window_names(void);
|
||||
|
Reference in New Issue
Block a user