[svn:parrot] r46755 - branches/ops_pct/compilers/opsc
cotto at svn.parrot.org
cotto at svn.parrot.org
Tue May 18 08:25:46 UTC 2010
Author: cotto
Date: Tue May 18 08:25:46 2010
New Revision: 46755
URL: https://trac.parrot.org/parrot/changeset/46755
Log:
[opsc] add some short options for convenience
Modified:
branches/ops_pct/compilers/opsc/ops2c.nqp
Modified: branches/ops_pct/compilers/opsc/ops2c.nqp
==============================================================================
--- branches/ops_pct/compilers/opsc/ops2c.nqp Tue May 18 01:11:37 2010 (r46754)
+++ branches/ops_pct/compilers/opsc/ops2c.nqp Tue May 18 08:25:46 2010 (r46755)
@@ -13,13 +13,16 @@
$getopts.notOptStop();
my $arg := $getopts.add();
$arg.long('core');
+$arg.short('c');
$arg := $getopts.add();
$arg.long('dynamic');
+$arg.short('d');
$arg.type('String');
$arg := $getopts.add();
$arg.long('no-lines');
+$arg.short('n');
$arg := $getopts.add();
$arg.long('help');
More information about the parrot-commits
mailing list