=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/format.c,v retrieving revision 1.13 retrieving revision 1.14 diff -c -r1.13 -r1.14 *** src/usr.bin/tmux/format.c 2013/03/21 16:13:24 1.13 --- src/usr.bin/tmux/format.c 2013/03/21 16:14:09 1.14 *************** *** 1,4 **** ! /* $OpenBSD: format.c,v 1.13 2013/03/21 16:13:24 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: format.c,v 1.14 2013/03/21 16:14:09 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 321,326 **** --- 321,328 ---- tim = ctime(&t); *strchr(tim, '\n') = '\0'; format_add(ft, "client_activity_string", "%s", tim); + + format_add(ft, "client_prefix", "%d", !!(c->flags & CLIENT_PREFIX)); if (c->tty.flags & TTY_UTF8) format_add(ft, "client_utf8", "%d", 1);