After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 331811 - Spell checking not working
Spell checking not working
Status: RESOLVED FIXED
Product: gedit-plugins
Classification: Other
Component: General
2.13.x
Other Linux
: Normal normal
: ---
Assigned To: Gedit maintainers
Gedit maintainers
Depends on:
Blocks:
 
 
Reported: 2006-02-19 20:59 UTC by Sebastien Bacher
Modified: 2019-03-23 20:54 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Sebastien Bacher 2006-02-19 20:59:23 UTC
That bug has been described on https://launchpad.net/products/gedit/+bug/32007

"Spell checking a document (via Tools->Check Spelling) does not report misspelled words; however the automatic spell checking (Tools->Autocheck Spelling) correctly underlines them in red.

I'm using Ubuntu Dapper with gedit version 2.13.91-0ubuntu1."
Comment 1 Paolo Borelli 2006-02-19 23:10:55 UTC
ouch! you are right, I seem that I broke it in the last commit to spell plugin...

there was a spot in the code which did

		word = get_current_word (doc, &start, &end);
			return NULL;

istead of

		word = get_current_word (doc, &start, &end);
		if (word == NULL)
			return NULL;

thus returning NULL incoditionally :/

Fixed in cvs.
Comment 2 Sebastien Bacher 2006-02-19 23:16:17 UTC
thank you for the quick fix for that :)