From: Colin Leroy Date: Thu, 29 Jun 2006 17:39:05 +0000 (+0000) Subject: 2006-06-29 [colin] 2.3.1cvs43 X-Git-Tag: rel_2_4_0~55 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=98ca99c58f24003ffa422cee71066000f3103344 2006-06-29 [colin] 2.3.1cvs43 * src/gtk/gtkaspell.c "Sylpheed" and "Sylpheed-Claws" do exist ! --- diff --git a/ChangeLog b/ChangeLog index e46b82793..adef83f93 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-06-29 [colin] 2.3.1cvs43 + + * src/gtk/gtkaspell.c + "Sylpheed" and "Sylpheed-Claws" do exist ! + 2006-06-29 [colin] 2.3.1cvs42 * src/imap.c diff --git a/PATCHSETS b/PATCHSETS index 688868f11..61338c2ad 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1643,3 +1643,4 @@ ( cvs diff -u -r 1.115.2.92 -r 1.115.2.93 src/main.c; cvs diff -u -r 1.1.2.21 -r 1.1.2.22 src/plugins/pgpcore/sgpgme.c; ) > 2.3.1cvs40.patchset ( cvs diff -u -r 1.179.2.124 -r 1.179.2.125 src/imap.c; cvs diff -u -r 1.34.2.6 -r 1.34.2.7 src/imap.h; cvs diff -u -r 1.274.2.120 -r 1.274.2.121 src/mainwindow.c; ) > 2.3.1cvs41.patchset ( cvs diff -u -r 1.179.2.125 -r 1.179.2.126 src/imap.c; ) > 2.3.1cvs42.patchset +( cvs diff -u -r 1.9.2.40 -r 1.9.2.41 src/gtk/gtkaspell.c; ) > 2.3.1cvs43.patchset diff --git a/configure.ac b/configure.ac index 4bf45500f..81cecd800 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=3 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=42 +EXTRA_VERSION=43 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/gtk/gtkaspell.c b/src/gtk/gtkaspell.c index 1d87a7bc0..787b266ce 100644 --- a/src/gtk/gtkaspell.c +++ b/src/gtk/gtkaspell.c @@ -1065,7 +1065,8 @@ static gboolean check_at(GtkAspell *gtkaspell, gint from_pos) &start, &end)) return FALSE; - if (misspelled_test(gtkaspell, buf)) { + if (misspelled_test(gtkaspell, buf) + && strcasecmp(buf, "sylpheed") && strcasecmp(buf, "sylpheed-claws")) { strncpy(gtkaspell->theword, buf, GTKASPELLWORDSIZE - 1); gtkaspell->theword[GTKASPELLWORDSIZE - 1] = 0; gtkaspell->start_pos = start;