diff options
author | nicm <nicm> | 2016-10-05 12:34:05 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-10-05 12:34:05 +0000 |
commit | 4117a7ed1909c16026f63d8469512ffd9fbbf4c9 (patch) | |
tree | 0c7def34d17087c4cf65f64be6aa72b866dd1d41 /tmux.h | |
parent | b4f95c43fca75a3ee713fdf76fe55bb1e8ebba36 (diff) | |
download | rtmux-4117a7ed1909c16026f63d8469512ffd9fbbf4c9.tar.gz rtmux-4117a7ed1909c16026f63d8469512ffd9fbbf4c9.tar.bz2 rtmux-4117a7ed1909c16026f63d8469512ffd9fbbf4c9.zip |
Keep buffer creation time and add accessors for it and the order number.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1587,6 +1587,8 @@ void cfg_show_causes(struct session *); /* paste.c */ struct paste_buffer; const char *paste_buffer_name(struct paste_buffer *); +u_int paste_buffer_order(struct paste_buffer *); +time_t paste_buffer_created(struct paste_buffer *); const char *paste_buffer_data(struct paste_buffer *, size_t *); struct paste_buffer *paste_walk(struct paste_buffer *); struct paste_buffer *paste_get_top(const char **); |