diff options
author | 2012-03-17 22:35:09 +0000 | |
---|---|---|
committer | 2012-03-17 22:35:09 +0000 | |
commit | 05babb28bdab76474014f30d0f89f1d606eb785c (patch) | |
tree | c6497a91a4cc05fb670d065a8ae077d08b04dfae /usr.bin/tmux/layout-custom.c | |
parent | $Id$ -> $OpenBSD$. (diff) | |
download | wireguard-openbsd-05babb28bdab76474014f30d0f89f1d606eb785c.tar.xz wireguard-openbsd-05babb28bdab76474014f30d0f89f1d606eb785c.zip |
Add notify hooks for various events, the functions are currently empty
stubs but will be filled in for control mode later. From George Nachman.
Diffstat (limited to 'usr.bin/tmux/layout-custom.c')
-rw-r--r-- | usr.bin/tmux/layout-custom.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/layout-custom.c b/usr.bin/tmux/layout-custom.c index 4a241f3481a..360ccbdb51e 100644 --- a/usr.bin/tmux/layout-custom.c +++ b/usr.bin/tmux/layout-custom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: layout-custom.c,v 1.4 2012/02/05 22:23:13 nicm Exp $ */ +/* $OpenBSD: layout-custom.c,v 1.5 2012/03/17 22:35:09 nicm Exp $ */ /* * Copyright (c) 2010 Nicholas Marriott <nicm@users.sourceforge.net> @@ -172,6 +172,8 @@ layout_parse(struct window *w, const char *layout) layout_print_cell(lc, __func__, 0); + notify_window_layout_changed(w); + return (0); fail: |