src/Pure/install_pp.ML
author wenzelm
Fri, 19 Aug 1994 15:38:50 +0200
changeset 558 c4092ae47210
parent 254 b1fcd27fcac4
child 619 a0342b27b38e
permissions -rw-r--r--
renamed 'defns' to 'defs'; removed 'sigclass'; replaced parents by enclose; exported parens, brackets, mk_list, mk_big_list, mk_pair, mk_triple; various minor internal changes;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
19
929ad32d63fc Pure/ROOT.ML
wenzelm
parents: 0
diff changeset
     1
(*  Title:      Pure/install_pp.ML
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
254
b1fcd27fcac4 replaced pprint_sg by Sign.pprint_sg;
wenzelm
parents: 230
diff changeset
     4
Set up automatic toplevel printing.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
254
b1fcd27fcac4 replaced pprint_sg by Sign.pprint_sg;
wenzelm
parents: 230
diff changeset
     7
install_pp (make_pp ["Thm", "thm"] pprint_thm);
b1fcd27fcac4 replaced pprint_sg by Sign.pprint_sg;
wenzelm
parents: 230
diff changeset
     8
install_pp (make_pp ["Thm", "theory"] pprint_theory);
b1fcd27fcac4 replaced pprint_sg by Sign.pprint_sg;
wenzelm
parents: 230
diff changeset
     9
install_pp (make_pp ["Thm", "cterm"] pprint_cterm);
b1fcd27fcac4 replaced pprint_sg by Sign.pprint_sg;
wenzelm
parents: 230
diff changeset
    10
install_pp (make_pp ["Thm", "ctyp"] pprint_ctyp);
b1fcd27fcac4 replaced pprint_sg by Sign.pprint_sg;
wenzelm
parents: 230
diff changeset
    11
install_pp (make_pp ["Sign", "sg"] Sign.pprint_sg);
b1fcd27fcac4 replaced pprint_sg by Sign.pprint_sg;
wenzelm
parents: 230
diff changeset
    12
install_pp (make_pp ["Syntax", "ast"] Syntax.pprint_ast);
b1fcd27fcac4 replaced pprint_sg by Sign.pprint_sg;
wenzelm
parents: 230
diff changeset
    13
install_pp (make_pp ["typ"] Syntax.simple_pprint_typ);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    14
89
2fee1120cb3e commented out install_pp for term, typ
wenzelm
parents: 19
diff changeset
    15
(*
2fee1120cb3e commented out install_pp for term, typ
wenzelm
parents: 19
diff changeset
    16
install_pp (make_pp ["term"] pprint_term);
2fee1120cb3e commented out install_pp for term, typ
wenzelm
parents: 19
diff changeset
    17
install_pp (make_pp ["typ"] pprint_typ);
2fee1120cb3e commented out install_pp for term, typ
wenzelm
parents: 19
diff changeset
    18
*)
254
b1fcd27fcac4 replaced pprint_sg by Sign.pprint_sg;
wenzelm
parents: 230
diff changeset
    19