CVSROOT: /cvs Module name: src Changes by: n...@cvs.openbsd.org 2009/07/15 02:00:49
Modified files: usr.bin/tmux : cmd-kill-window.c window.c Log message: The man page says that kill-window removes the window entirely, unlinking it from any sessions. In fact the implementation only affected the current session, making it the same as unlink-window but destroying the window if it was linked into only one session (unlinkw gives an error). Change the behaviour to match what it documented and was originally intended.