CVSROOT: /cvs Module name: src Changes by: [email protected] 2020/04/01 01:35:10
Modified files:
usr.bin/tmux : tmux.1 window-copy.c
Log message:
Performance improvements for regex searching, most notably:
- Use the grid data directly instead of copying it.
- Special case the most typical one byte character cells and use memcmp
for multiple bytes instead of a handrolled loop.
- Hoist regcomp out of the loop into the calling functions.
GitHub issue 2143.
Also a man page from from jmc@.
