only show the message about using the default batch interpreter when

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

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

svn path=/trunk/; revision=24281
This commit is contained in:
Sven Neumann 2007-12-07 11:47:32 +00:00 committed by Sven Neumann
parent b393e83016
commit 68a8659e83
2 changed files with 8 additions and 2 deletions

View file

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

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);
}
}