This patch implements optional arguments for the longopt subsystem, and modifies imcc to use them.
Thanks, applied and ...
+ if (dex+1 < argc && argv[dex+1][0] && argv[dex+1][0] != '-') {
changed that to if (dex+2 < argc ... So "parrot -d file.pasm" works too.
Thanks again, leo