Merged from trunk:

2007-12-07  Sven Neumann  <sven@gimp.org>

	Merged from trunk:

	* app/batch.c (batch_run): only show the message about using the
	default batch interpreter when running in verbose mode.

svn path=/branches/gimp-2-4/; revision=24282
This commit is contained in:
Sven Neumann 2007-12-07 11:48:32 +00:00 committed by Sven Neumann
parent 16a9d01f8e
commit 5459d8fcd6
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2007-12-07 Sven Neumann <sven@gimp.org>
Merged from trunk:
* app/batch.c (batch_run): only show the message about using the
default batch interpreter when running in verbose mode.
2007-12-05 Martin Nordholts <martinn@svn.gnome.org>
Merged from trunk:

View File

@ -72,8 +72,9 @@ batch_run (Gimp *gimp,
{
batch_interpreter = BATCH_DEFAULT_EVAL_PROC;
g_printerr (_("No batch interpreter specified, using the default "
"'%s'.\n"), batch_interpreter);
if (gimp->be_verbose)
g_printerr (_("No batch interpreter specified, using the default "
"'%s'.\n"), batch_interpreter);
}
}