src/Pure/Isar/isar_syn.ML
changeset 5924 b9d5f5901b59
parent 5914 2c069b0a98ee
child 5937 a777d702e81f
equal deleted inserted replaced
5923:5a8c731b1532 5924:b9d5f5901b59
   417 
   417 
   418 val print_thmsP =
   418 val print_thmsP =
   419   OuterSyntax.parser true "thm" "print theorems" (xthm >> IsarCmd.print_thms);
   419   OuterSyntax.parser true "thm" "print theorems" (xthm >> IsarCmd.print_thms);
   420 
   420 
   421 val print_propP =
   421 val print_propP =
   422   OuterSyntax.parser true "print_prop" "read and print proposition"
   422   OuterSyntax.parser true "prop" "read and print proposition"
   423     (term >> IsarCmd.print_prop);
   423     (term >> IsarCmd.print_prop);
   424 
   424 
   425 val print_termP =
   425 val print_termP =
   426   OuterSyntax.parser true "print_term" "read and print term"
   426   OuterSyntax.parser true "term" "read and print term"
   427     (term >> IsarCmd.print_term);
   427     (term >> IsarCmd.print_term);
   428 
   428 
   429 val print_typeP =
   429 val print_typeP =
   430   OuterSyntax.parser true "print_type" "read and print type"
   430   OuterSyntax.parser true "typ" "read and print type"
   431     (typ >> IsarCmd.print_type);
   431     (typ >> IsarCmd.print_type);
   432 
   432 
   433 
   433 
   434 
   434 
   435 (** system commands (for interactive mode only) **)
   435 (** system commands (for interactive mode only) **)