=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/format.c,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/usr.bin/tmux/format.c 2012/01/30 09:39:34 1.5 --- src/usr.bin/tmux/format.c 2012/02/02 00:03:45 1.6 *************** *** 1,4 **** ! /* $OpenBSD: format.c,v 1.5 2012/01/30 09:39:34 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: format.c,v 1.6 2012/02/02 00:03:45 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 303,310 **** time_t t; format_add(ft, "client_cwd", "%s", c->cwd); ! format_add(ft, "client_height", "%u", c->tty.sx); ! format_add(ft, "client_width", "%u", c->tty.sy); format_add(ft, "client_tty", "%s", c->tty.path); format_add(ft, "client_termname", "%s", c->tty.termname); --- 303,310 ---- time_t t; 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); format_add(ft, "client_tty", "%s", c->tty.path); format_add(ft, "client_termname", "%s", c->tty.termname);