X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fbin%2Froles%2Froles.ml;fp=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fbin%2Froles%2Froles.ml;h=2b61c1264010c7154adbfb8783b7b89e42c443a2;hb=f5bc9206835d61109a72c7b973dad8dd21914950;hp=1c7866e47f9c148a1cd4a615a7ea0a4aa4bcc0a5;hpb=a1ae862976f2489107dd107937f5e05d0aaa7144;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/bin/roles/roles.ml b/matita/matita/contribs/lambdadelta/bin/roles/roles.ml index 1c7866e47..2b61c1264 100644 --- a/matita/matita/contribs/lambdadelta/bin/roles/roles.ml +++ b/matita/matita/contribs/lambdadelta/bin/roles/roles.ml @@ -17,11 +17,12 @@ module EU = RolesUtils let help_C = " Set this working directory (default: current directory)" let help_L = " Debug osn lexer" let help_X = " Reset all options to defaults" +let help_a = " Add selected names to a role" let help_r = " Load current status" let help_s = " Start a stage with this version" let help_t = " Toggle the selection of this pointed entry" let help_w = " Save current status" -let help = "Usage: roles [ -LXrw | -C | -s | -t | ]*" +let help = "Usage: roles [ -LXarw | -C | -s | -t | ]*" let new_stage s = EE.new_stage (EU.version_of_string s) @@ -39,6 +40,7 @@ let _main = try "-C", Arg.String ((:=) EG.wd), help_C; "-L", Arg.Set EG.debug_lexer, help_L; "-X", Arg.Unit EG.clear, help_X; + "-a", Arg.Unit EE.add_role, help_a; "-r", Arg.Unit EE.read_status, help_r; "-s", Arg.String new_stage, help_s; "-t", Arg.String toggle_entry, help_t;