Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2025-02-26 10:01:14 +00:00
8 changed files with 100 additions and 32 deletions

3
tmux.h
View File

@ -176,7 +176,8 @@ struct winlink;
/* Is this a paste key? */
#define KEYC_IS_PASTE(key) \
((key) == KEYC_PASTE_START || (key) == KEYC_PASTE_END)
(((key) & KEYC_MASK_KEY) == KEYC_PASTE_START || \
((key) & KEYC_MASK_KEY) == KEYC_PASTE_END)
/* Multiple click timeout. */
#define KEYC_CLICK_TIMEOUT 300