Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 436536 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/fe-gtk/xtext.c (-2 / +3 lines)
Lines 1870-1876 gtk_xtext_get_word (GtkXText * xtext, int x, int y, textentry ** ret_ent, Link Here
1870
		len++;
1870
		len++;
1871
	}
1871
	}
1872
1872
1873
	if (len > 0 && word[len-1]=='.')
1873
	/* ignore trailing dots and commas. */
1874
	/* FIXME: locales? */
1875
	while (len > 0 && (word[len-1]=='.' || word[len-1]==',' || word[len-1]==';'))
1874
	{
1876
	{
1875
		len--;
1877
		len--;
1876
		str--;
1878
		str--;
1877
- 

Return to bug 436536