mirror of
https://github.com/tmux/tmux.git
synced 2025-09-05 16:27:03 +00:00
Merge branch 'obsd-master'
Conflicts: Makefile cmd-server-info.c cmd-start-server.c
This commit is contained in:
@ -133,7 +133,7 @@ xterm_keys_match(const char *template, const char *buf, size_t len)
|
||||
do {
|
||||
if (*template != '_' && buf[pos] != *template)
|
||||
return (-1);
|
||||
} while (pos++ != len && *++template != '\0');
|
||||
} while (*++template != '\0' && ++pos != len);
|
||||
|
||||
if (*template != '\0') /* partial */
|
||||
return (1);
|
||||
|
Reference in New Issue
Block a user