Skip to content

Commit

Permalink
Rename a function for consistency and some spacing nits.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicm committed Oct 15, 2016
1 parent 63b2547 commit 3f138dc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion control-notify.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ control_notify_session_created(__unused struct session *s)
}

void
control_notify_session_close(__unused struct session *s)
control_notify_session_closed(__unused struct session *s)
{
struct client *c;

Expand Down
2 changes: 1 addition & 1 deletion notify.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ notify_drain(void)
control_notify_session_created(ne->session);
break;
case NOTIFY_SESSION_CLOSED:
control_notify_session_close(ne->session);
control_notify_session_closed(ne->session);
break;
}
TAILQ_REMOVE(&notify_queue, ne, entry);
Expand Down
6 changes: 5 additions & 1 deletion session.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ session_destroy(struct session *s)
struct winlink *wl;

log_debug("session %s destroyed", s->name);
s->curw = NULL;

RB_REMOVE(sessions, &sessions, s);
notify_session_closed(s);
Expand Down Expand Up @@ -385,14 +386,17 @@ int
session_detach(struct session *s, struct winlink *wl)
{
if (s->curw == wl &&
session_last(s) != 0 && session_previous(s, 0) != 0)
session_last(s) != 0 &&
session_previous(s, 0) != 0)
session_next(s, 0);

wl->flags &= ~WINLINK_ALERTFLAGS;
notify_window_unlinked(s, wl->window);
winlink_stack_remove(&s->lastw, wl);
winlink_remove(&s->windows, wl);

session_group_synchronize_from(s);

if (RB_EMPTY(&s->windows)) {
session_destroy(s);
return (1);
Expand Down
2 changes: 1 addition & 1 deletion tmux.h
Original file line number Diff line number Diff line change
Expand Up @@ -2208,7 +2208,7 @@ void control_notify_window_renamed(struct window *);
void control_notify_attached_session_changed(struct client *);
void control_notify_session_renamed(struct session *);
void control_notify_session_created(struct session *);
void control_notify_session_close(struct session *);
void control_notify_session_closed(struct session *);

/* session.c */
extern struct sessions sessions;
Expand Down

0 comments on commit 3f138dc

Please sign in to comment.