restore unescaping of "__"-escaped underlines which was broken since the

2006-08-06  Michael Natterer  <mitch@gimp.org>

	* libgimpbase/gimputils.c (gimp_strip_uline): restore unescaping
	of "__"-escaped underlines which was broken since the addition of
	"(_X)"-stripping.
This commit is contained in:
Michael Natterer
2006-08-06 13:12:43 +00:00
committed by Michael Natterer
parent f72524032c
commit efc66870f5
2 changed files with 8 additions and 1 deletions

View File

@ -262,7 +262,8 @@ gimp_strip_uline (const gchar *str)
if (str[1] == '_')
{
*p++ = *str++;
*p++ = *str++;
str++;
continue;
}
/* find the "(_X)" construct and remove it entirely */