=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/notify.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- src/usr.bin/tmux/notify.c 2017/05/04 07:16:43 1.24 +++ src/usr.bin/tmux/notify.c 2017/08/30 10:33:57 1.25 @@ -1,4 +1,4 @@ -/* $OpenBSD: notify.c,v 1.24 2017/05/04 07:16:43 nicm Exp $ */ +/* $OpenBSD: notify.c,v 1.25 2017/08/30 10:33:57 nicm Exp $ */ /* * Copyright (c) 2012 George Nachman @@ -46,7 +46,7 @@ cmd_find_clear_state(&fs, 0); if (cmd_find_empty_state(&ne->fs) || !cmd_find_valid_state(&ne->fs)) - cmd_find_from_nothing(&fs); + cmd_find_from_nothing(&fs, 0); else cmd_find_copy_state(&fs, &ne->fs); @@ -170,7 +170,7 @@ { struct cmd_find_state fs; - cmd_find_from_client(&fs, c); + cmd_find_from_client(&fs, c, 0); notify_add(name, &fs, c, NULL, NULL, NULL); } @@ -180,9 +180,9 @@ struct cmd_find_state fs; if (session_alive(s)) - cmd_find_from_session(&fs, s); + cmd_find_from_session(&fs, s, 0); else - cmd_find_from_nothing(&fs); + cmd_find_from_nothing(&fs, 0); notify_add(name, &fs, NULL, s, NULL, NULL); } @@ -191,7 +191,7 @@ { struct cmd_find_state fs; - cmd_find_from_winlink(&fs, wl); + cmd_find_from_winlink(&fs, wl, 0); notify_add(name, &fs, NULL, wl->session, wl->window, NULL); } @@ -200,7 +200,7 @@ { struct cmd_find_state fs; - cmd_find_from_session_window(&fs, s, w); + cmd_find_from_session_window(&fs, s, w, 0); notify_add(name, &fs, NULL, s, w, NULL); } @@ -209,7 +209,7 @@ { struct cmd_find_state fs; - cmd_find_from_window(&fs, w); + cmd_find_from_window(&fs, w, 0); notify_add(name, &fs, NULL, NULL, w, NULL); } @@ -218,6 +218,6 @@ { struct cmd_find_state fs; - cmd_find_from_pane(&fs, wp); + cmd_find_from_pane(&fs, wp, 0); notify_add(name, &fs, NULL, NULL, NULL, wp); }