=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/format.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- src/usr.bin/tmux/format.c 2013/10/10 12:04:01 1.33 +++ src/usr.bin/tmux/format.c 2013/10/10 12:26:35 1.34 @@ -1,4 +1,4 @@ -/* $OpenBSD: format.c,v 1.33 2013/10/10 12:04:01 nicm Exp $ */ +/* $OpenBSD: format.c,v 1.34 2013/10/10 12:26:35 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott @@ -403,7 +403,6 @@ time_t t; struct session *s; - format_add(ft, "client_cwd", "%s", c->cwd); format_add(ft, "client_height", "%u", c->tty.sy); format_add(ft, "client_width", "%u", c->tty.sx); if (c->tty.path != NULL) @@ -552,8 +551,6 @@ format_add(ft, "pane_pid", "%ld", (long) wp->pid); if (wp->cmd != NULL) format_add(ft, "pane_start_command", "%s", wp->cmd); - if (wp->cwd != NULL) - format_add(ft, "pane_start_path", "%s", wp->cwd); if ((cwd = get_proc_cwd(wp->fd)) != NULL) format_add(ft, "pane_current_path", "%s", cwd); if ((cmd = get_proc_name(wp->fd, wp->tty)) != NULL) {