mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Move struct options into options.c.
This commit is contained in:
2
paste.c
2
paste.c
@ -151,7 +151,7 @@ paste_add(char *data, size_t size)
|
||||
if (size == 0)
|
||||
return;
|
||||
|
||||
limit = options_get_number(&global_options, "buffer-limit");
|
||||
limit = options_get_number(global_options, "buffer-limit");
|
||||
RB_FOREACH_REVERSE_SAFE(pb, paste_time_tree, &paste_by_time, pb1) {
|
||||
if (paste_num_automatic < limit)
|
||||
break;
|
||||
|
Reference in New Issue
Block a user