summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net-im/gaim/files/gaim-0.76-spellchk.diff19
-rw-r--r--net-im/gaim/files/gaim-0.76-yahoo-decode.diff28
2 files changed, 0 insertions, 47 deletions
diff --git a/net-im/gaim/files/gaim-0.76-spellchk.diff b/net-im/gaim/files/gaim-0.76-spellchk.diff
deleted file mode 100644
index e0de9bb28a28..000000000000
--- a/net-im/gaim/files/gaim-0.76-spellchk.diff
+++ /dev/null
@@ -1,19 +0,0 @@
-===================================================================
-RCS file: /cvsroot/gaim/gaim/plugins/spellchk.c,v
-retrieving revision 1.54
-retrieving revision 1.55
-diff -u -r1.54 -r1.55
---- gaim/gaim/plugins/spellchk.c 2003/11/25 07:16:09 1.54
-+++ gaim/gaim/plugins/spellchk.c 2004/04/04 22:27:31 1.55
-@@ -386,9 +386,9 @@
-
- load_conf();
-
-- gaim_signal_connect(conv_handle, "displaying-im-msg",
-+ gaim_signal_connect(conv_handle, "writing-im-msg",
- plugin, GAIM_CALLBACK(substitute_words), NULL);
-- gaim_signal_connect(conv_handle, "displaying-chat-msg",
-+ gaim_signal_connect(conv_handle, "writing-chat-msg",
- plugin, GAIM_CALLBACK(substitute_words), NULL);
-
- return TRUE;
diff --git a/net-im/gaim/files/gaim-0.76-yahoo-decode.diff b/net-im/gaim/files/gaim-0.76-yahoo-decode.diff
deleted file mode 100644
index ec01f49cf170..000000000000
--- a/net-im/gaim/files/gaim-0.76-yahoo-decode.diff
+++ /dev/null
@@ -1,28 +0,0 @@
-===================================================================
-RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/yahoo.c,v
-retrieving revision 1.216
-retrieving revision 1.219
-diff -u -r1.216 -r1.219
---- gaim/gaim/src/protocols/yahoo/yahoo.c 2004/04/06 02:28:01 1.216
-+++ gaim/gaim/src/protocols/yahoo/yahoo.c 2004/04/08 14:03:17 1.219
-@@ -902,16 +902,17 @@
- char *converted;
- char *n, *new;
- const char *end, *p;
-- int i;
-+ int i, k;
-
- n = new = g_malloc(strlen (text) + 1);
- end = text + strlen(text);
-
- for (p = text; p < end; p++, n++) {
- if (*p == '\\') {
-- sscanf(p + 1, "%3o\n", &i);
-+ k = 0;
-+ sscanf(p + 1, "%3o%n\n", &i, &k);
- *n = i;
-- p += 3;
-+ p += k;
- }
- else
- *n = *p;