removed global conversion from '-' to '_' --Matt

Fri May 22 00:46:18 EDT 1998  Matthew Wilson  <msw@gimp.org>

        * app/batch.c: removed global conversion from '-' to '_'
--Matt
This commit is contained in:
EDT 1998 Matthew Wilson
1998-05-22 04:47:58 +00:00
committed by Matt Wilson
parent 5fc903b216
commit 62a900c972
2 changed files with 4 additions and 8 deletions

View File

@ -1,3 +1,7 @@
Fri May 22 00:46:18 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/batch.c: removed global conversion from '-' to '_'
Thu May 21 13:03:50 PDT 1998 Manish Singh <yosh@gimp.org>
* updated Adam's stuff

View File

@ -191,14 +191,6 @@ batch_run_cmd (char *cmd)
if (!cmdname)
return;
t = cmdname;
while (*t)
{
if (*t == '-')
*t = '_';
t++;
}
proc = procedural_db_lookup (cmdname);
if (!proc)
{