src/Pure/Isar/isar_syn.ML
changeset 12125 316d11f760f7
parent 12083 15bafeb549e0
child 12142 c81ef8865cfb
equal deleted inserted replaced
12124:c4fcdb80c93e 12125:316d11f760f7
   611   OuterSyntax.improper_command "thm" "print theorems" K.diag
   611   OuterSyntax.improper_command "thm" "print theorems" K.diag
   612     (opt_modes -- P.xthms1 -- P.marg_comment >> (Toplevel.no_timing oo IsarCmd.print_thms));
   612     (opt_modes -- P.xthms1 -- P.marg_comment >> (Toplevel.no_timing oo IsarCmd.print_thms));
   613 
   613 
   614 val print_prfsP =
   614 val print_prfsP =
   615   OuterSyntax.improper_command "prf" "print proof terms of theorems" K.diag
   615   OuterSyntax.improper_command "prf" "print proof terms of theorems" K.diag
   616     (opt_modes -- P.xthms1 -- P.marg_comment >> (Toplevel.no_timing oo IsarCmd.print_prfs false));
   616     (opt_modes -- Scan.option P.xthms1 -- P.marg_comment >>
       
   617       (Toplevel.no_timing oo IsarCmd.print_prfs false));
   617 
   618 
   618 val print_full_prfsP =
   619 val print_full_prfsP =
   619   OuterSyntax.improper_command "full_prf" "print full proof terms of theorems" K.diag
   620   OuterSyntax.improper_command "full_prf" "print full proof terms of theorems" K.diag
   620     (opt_modes -- P.xthms1 -- P.marg_comment >> (Toplevel.no_timing oo IsarCmd.print_prfs true));
   621     (opt_modes -- Scan.option P.xthms1 -- P.marg_comment >>
       
   622       (Toplevel.no_timing oo IsarCmd.print_prfs true));
   621 
   623 
   622 val print_propP =
   624 val print_propP =
   623   OuterSyntax.improper_command "prop" "read and print proposition" K.diag
   625   OuterSyntax.improper_command "prop" "read and print proposition" K.diag
   624     (opt_modes -- P.term -- P.marg_comment >> (Toplevel.no_timing oo IsarCmd.print_prop));
   626     (opt_modes -- P.term -- P.marg_comment >> (Toplevel.no_timing oo IsarCmd.print_prop));
   625 
   627