diff options
author | nicm <nicm> | 2015-02-05 10:29:43 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-02-05 10:29:43 +0000 |
commit | 4946f74253de52f10beb023d4c5b88bafdb11ec4 (patch) | |
tree | 4210eaf66f9aee7998ec558ce34a1c9454ae0b71 /names.c | |
parent | e5d9ceff18e37320b9243d24204a0a79d77172e4 (diff) | |
download | rtmux-4946f74253de52f10beb023d4c5b88bafdb11ec4.tar.gz rtmux-4946f74253de52f10beb023d4c5b88bafdb11ec4.tar.bz2 rtmux-4946f74253de52f10beb023d4c5b88bafdb11ec4.zip |
Wrap all the individual format_* calls in a single format_defaults
functions.
Diffstat (limited to 'names.c')
-rw-r--r-- | names.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -86,8 +86,8 @@ format_window_name(struct window *w) char *fmt, *name; ft = format_create(); - format_window(ft, w); - format_window_pane(ft, w->active); + format_defaults_window(ft, w); + format_defaults_pane(ft, w->active); fmt = options_get_string(&w->options, "automatic-rename-format"); name = format_expand(ft, fmt); |