mirror of https://github.com/GNOME/gimp.git
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:
parent
f72524032c
commit
efc66870f5
|
@ -1,3 +1,9 @@
|
|||
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.
|
||||
|
||||
2006-08-06 Karine Delvare <edhel@gimp.org>
|
||||
|
||||
* app/tools/gimprectangletool.c: Applied patch from Karl Günter
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue