From ffce6b34b2da3b78fd0cfae9e031a54027d7f7a7 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 6 Apr 2011 22:21:02 +0000 Subject: |PatchSet 876 |Date: 2011/03/29 20:30:16 |Author: nicm |Branch: HEAD |Tag: (none) |Log: |Change -t on display-message to be target-pane for the #[A-Z] |replacements and add -c as target-client. --- server-client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server-client.c') diff --git a/server-client.c b/server-client.c index e4ca3160..54dcb62d 100644 --- a/server-client.c +++ b/server-client.c @@ -1,4 +1,4 @@ -/* $Id: server-client.c,v 1.54 2011-02-15 15:20:03 tcunha Exp $ */ +/* $Id: server-client.c,v 1.55 2011-04-06 22:21:02 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -613,7 +613,7 @@ server_client_set_title(struct client *c) template = options_get_string(&s->options, "set-titles-string"); - title = status_replace(c, NULL, template, time(NULL), 1); + title = status_replace(c, NULL, NULL, NULL, template, time(NULL), 1); if (c->title == NULL || strcmp(title, c->title) != 0) { if (c->title != NULL) xfree(c->title); -- cgit