Sync OpenBSD patchset 1091:

Do not fire name timer when automatic-rename is off, from Tim Ruehsen a
while ago.
This commit is contained in:
Tiago Cunha
2012-04-10 09:57:08 +00:00
parent 14e5cdf02e
commit ce67a44a94
3 changed files with 16 additions and 5 deletions

View File

@ -49,9 +49,7 @@ window_name_callback(unused int fd, unused short events, void *data)
struct window *w = data;
char *name, *wname;
queue_window_name(w); /* XXX even if the option is off? */
if (!options_get_number(&w->options, "automatic-rename"))
return;
queue_window_name(w); /* stopped when option turned off */
if (w->active->screen != &w->active->base)
name = NULL;