fixed the fix.
2003-09-17 Sven Neumann <sven@gimp.org> * app/config/gimpconfig-path.c (gimp_config_path_expand): fixed the fix.
This commit is contained in:
committed by
Sven Neumann
parent
f4942b7255
commit
2b47b79bb7
25
ChangeLog
25
ChangeLog
@ -1,3 +1,8 @@
|
||||
2003-09-17 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/config/gimpconfig-path.c (gimp_config_path_expand): fixed
|
||||
the fix.
|
||||
|
||||
2003-09-17 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* cursors/hand.xbm
|
||||
@ -22,7 +27,8 @@
|
||||
|
||||
2003-09-16 Helvetix Victorinox <helvetix@gimp.org>
|
||||
|
||||
* app/composite/gimp-composite-{mmx,sse,sse2,altivec,vis}.c: Regenerated.
|
||||
* app/composite/gimp-composite-{mmx,sse,sse2,altivec,vis}.c:
|
||||
Regenerated.
|
||||
|
||||
* app/composite/gimp-composite-regression.[ch]: Ensure all ints
|
||||
are now unsigned longs.
|
||||
@ -33,10 +39,6 @@
|
||||
__OPTIMIZE__ in which case the compiler can successfully
|
||||
allocate enough registers to load up the asm()
|
||||
|
||||
* app/composite/gimp-composite-sse2.c: Removed code that caused
|
||||
gcc to complain can't find a register in class `GENERAL_REGS' To
|
||||
be revisited later.
|
||||
|
||||
2003-09-17 Seth Burgess <sjburges@gimp.org>
|
||||
|
||||
* plug-ins/common/sparkle.c: use the rowstride of a pixel region
|
||||
@ -110,21 +112,10 @@
|
||||
|
||||
2003-09-16 Helvetix Victorinox <helvetix@gimp.org>
|
||||
|
||||
* app/composite/gimp-composite-{mmx,sse,sse2,altivec,vis}.c: Regenerated.
|
||||
|
||||
* app/composite/gimp-composite-regression.[ch]: Ensure all ints
|
||||
are now unsigned longs.
|
||||
|
||||
* app/composite/gimp-composite-sse2.c (gimp_composite_addition_rgba8_rgba8_rgba8_sse2):
|
||||
Enclosed the troublesome (rather dense) asm construct in
|
||||
__OPTIMIZE__ in which case the compiler can successfully
|
||||
allocate enough registers to load up the asm()
|
||||
|
||||
* app/composite/gimp-composite-sse2.c: Removed code that caused
|
||||
gcc to complain can't find a register in class `GENERAL_REGS' To
|
||||
gcc to complain can't find a register in class `GENERAL_REGS'. To
|
||||
be revisited later.
|
||||
|
||||
|
||||
2003-09-16 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/composite/gimp-composite-generic.c
|
||||
|
||||
@ -151,15 +151,7 @@ gimp_config_path_expand (const gchar *path,
|
||||
|
||||
expanded = g_new (gchar, length + 1);
|
||||
|
||||
if (filename)
|
||||
{
|
||||
p = filename;
|
||||
}
|
||||
else
|
||||
{
|
||||
p = path;
|
||||
}
|
||||
|
||||
p = recode ? filename : path;
|
||||
n = expanded;
|
||||
|
||||
while (*p)
|
||||
|
||||
@ -151,15 +151,7 @@ gimp_config_path_expand (const gchar *path,
|
||||
|
||||
expanded = g_new (gchar, length + 1);
|
||||
|
||||
if (filename)
|
||||
{
|
||||
p = filename;
|
||||
}
|
||||
else
|
||||
{
|
||||
p = path;
|
||||
}
|
||||
|
||||
p = recode ? filename : path;
|
||||
n = expanded;
|
||||
|
||||
while (*p)
|
||||
|
||||
Reference in New Issue
Block a user