Sync OpenBSD patchset 926:

PANE_FREEZE doesn't do anything anymore, so remove it.
This commit is contained in:
Tiago Cunha 2011-07-03 21:51:17 +00:00
parent 3d47b5cd07
commit ff7343c203
2 changed files with 1 additions and 4 deletions

1
tmux.h
View File

@ -803,7 +803,6 @@ struct window_pane {
int flags; int flags;
#define PANE_REDRAW 0x1 #define PANE_REDRAW 0x1
#define PANE_FREEZE 0x2
char *cmd; char *cmd;
char *shell; char *shell;

View File

@ -1,4 +1,4 @@
/* $Id: window-copy.c,v 1.133 2011-05-22 16:23:07 tcunha Exp $ */ /* $Id$ */
/* /*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -170,7 +170,6 @@ window_copy_init(struct window_pane *wp)
data->searchtype = WINDOW_COPY_OFF; data->searchtype = WINDOW_COPY_OFF;
data->searchstr = NULL; data->searchstr = NULL;
wp->flags |= PANE_FREEZE;
if (wp->fd != -1) if (wp->fd != -1)
bufferevent_disable(wp->event, EV_READ|EV_WRITE); bufferevent_disable(wp->event, EV_READ|EV_WRITE);
@ -234,7 +233,6 @@ window_copy_free(struct window_pane *wp)
{ {
struct window_copy_mode_data *data = wp->modedata; struct window_copy_mode_data *data = wp->modedata;
wp->flags &= ~PANE_FREEZE;
if (wp->fd != -1) if (wp->fd != -1)
bufferevent_enable(wp->event, EV_READ|EV_WRITE); bufferevent_enable(wp->event, EV_READ|EV_WRITE);