summaryrefslogtreecommitdiffstats
path: root/window.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-04 17:54:27 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-04 17:54:27 +0000
commit0f95671fe3628671ddc43a960bd69f867799d00a (patch)
treeaffc07f0cee6074fc57afd124bb62e43d1bbc0c7 /window.c
parent14b951254674c75d8422a8ac5f320a54d1dd8a48 (diff)
Disable/enable window activity monitoring with set-window-option command.
Diffstat (limited to 'window.c')
-rw-r--r--window.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/window.c b/window.c
index 5ca72320..63f2d5bf 100644
--- a/window.c
+++ b/window.c
@@ -1,4 +1,4 @@
-/* $Id: window.c,v 1.38 2008-06-03 21:42:37 nicm Exp $ */
+/* $Id: window.c,v 1.39 2008-06-04 17:54:27 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -186,6 +186,7 @@ window_create(const char *name,
w->in = buffer_create(BUFSIZ);
w->out = buffer_create(BUFSIZ);
w->mode = NULL;
+ w->flags = 0;
screen_create(&w->base, sx, sy, hlimit);
w->screen = &w->base;
input_init(w);