summaryrefslogtreecommitdiffstats
path: root/cmd-find.c
diff options
context:
space:
mode:
authornicm <nicm>2018-04-18 14:35:37 +0000
committernicm <nicm>2018-04-18 14:35:37 +0000
commit3dceddd70ea8491aed082efbb551ca352e97e03d (patch)
treebf5333f77aef71b6d6069664247b3708566da00c /cmd-find.c
parent2595718dd39a2aa66885b202c8ab04e0549370a4 (diff)
Change how display-message uses the client. Originally it was only
intended as the target client where the message should be displayed but at some point (perhaps when -p was added), it was used for format expansion too. This means it can get a bit weird where you have client formats expanding for a client with a different current session than the target session. However, it is nice that display-message can be used to show information about a specific client. So change so that the -c client will be used if the session matches the target session (-t or default), otherwise the best client will be chosen.
Diffstat (limited to 'cmd-find.c')
-rw-r--r--cmd-find.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-find.c b/cmd-find.c
index 84b13126..8e631575 100644
--- a/cmd-find.c
+++ b/cmd-find.c
@@ -122,7 +122,7 @@ cmd_find_client_better(struct client *c, struct client *than)
}
/* Find best client for session. */
-static struct client *
+struct client *
cmd_find_best_client(struct session *s)
{
struct client *c_loop, *c;