summaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-08-15 00:22:08 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-08-15 00:22:08 +0000
commit3baf7fbd4c5724b50830271bd06e139a6f2ab712 (patch)
treeb299f3200020b49746630229388c8931622304ff /src/common.h
parenta2d0944eee3e3387d0929dd7defbbe123f77148f (diff)
downloadirssi-3baf7fbd4c5724b50830271bd06e139a6f2ab712.zip
Some changes handling g_input_add() - maybe this helps to problems
where irssi sometimes eats all the cpu. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@608 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common.h b/src/common.h
index bf927676..d0e07b5a 100644
--- a/src/common.h
+++ b/src/common.h
@@ -46,8 +46,7 @@
typedef enum {
G_INPUT_READ = 1 << 0,
- G_INPUT_WRITE = 1 << 1,
- G_INPUT_EXCEPTION = 1 << 2
+ G_INPUT_WRITE = 1 << 1
} GInputCondition;
typedef void (*GInputFunction) (void *data, int source,