=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/window.c,v retrieving revision 1.171 retrieving revision 1.172 diff -u -r1.171 -r1.172 --- src/usr.bin/tmux/window.c 2016/10/15 09:27:52 1.171 +++ src/usr.bin/tmux/window.c 2016/10/16 22:06:40 1.172 @@ -1,4 +1,4 @@ -/* $OpenBSD: window.c,v 1.171 2016/10/15 09:27:52 nicm Exp $ */ +/* $OpenBSD: window.c,v 1.172 2016/10/16 22:06:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -390,7 +390,7 @@ { free(w->name); w->name = xstrdup(new_name); - notify_window_renamed(w); + notify_window("window-renamed", w); } void @@ -532,7 +532,7 @@ w->saved_layout_root = w->layout_root; layout_init(w, wp); w->flags |= WINDOW_ZOOMED; - notify_window_layout_changed(w); + notify_window("window-layout-changed", w); return (0); } @@ -555,7 +555,7 @@ wp->saved_layout_cell = NULL; } layout_fix_panes(w, w->sx, w->sy); - notify_window_layout_changed(w); + notify_window("window-layout-changed", w); return (0); }