diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2014-02-24 23:11:25 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2014-02-24 23:11:25 +0000 |
commit | f3152079e1661897d514a1b2d7ee9ae6a786b821 (patch) | |
tree | 62be41fba76a92414ef7e2c7f8ddde050210d910 | |
parent | bf82f15bbad02a8416608e9998cb8e8127806350 (diff) | |
download | rtmux-f3152079e1661897d514a1b2d7ee9ae6a786b821.tar.gz rtmux-f3152079e1661897d514a1b2d7ee9ae6a786b821.tar.bz2 rtmux-f3152079e1661897d514a1b2d7ee9ae6a786b821.zip |
I prefer . here not :.
-rw-r--r-- | window.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -893,7 +893,7 @@ window_pane_spawn(struct window_pane *wp, const char *cmd, const char *shell, } #ifdef HAVE_UTEMPTER - xsnprintf(s, sizeof s, "tmux(%lu):%%%u", (long) getpid(), wp->id); + xsnprintf(s, sizeof s, "tmux(%lu).%%%u", (long) getpid(), wp->id); utempter_add_record(wp->fd, s); #endif |