CVSROOT: /cvs Module name: src Changes by: [email protected] 2025/12/10 21:17:17
Modified files:
usr.bin/tmux : cmd-parse.y
Log message:
Simplify argument move using TAILQ_CONCAT()
Replace the manual loop moving each argument from cmd->arguments to
last->arguments with a single TAILQ_CONCAT() call. This makes the code
clearer and more efficient, while preserving identical behavior.
OK nicm@
