diff options
author | Timo Sirainen <cras@irssi.org> | 2000-08-15 00:22:08 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-08-15 00:22:08 +0000 |
commit | 3baf7fbd4c5724b50830271bd06e139a6f2ab712 (patch) | |
tree | b299f3200020b49746630229388c8931622304ff /src/common.h | |
parent | a2d0944eee3e3387d0929dd7defbbe123f77148f (diff) | |
download | irssi-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.h | 3 |
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, |