aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMakarius Wenzel1999-05-21 17:10:22 +0000
committerMakarius Wenzel1999-05-21 17:10:22 +0000
commit8a38cb65a774da958cd02d77803c0f69d40ab11e (patch)
treeec593bebd3c6fbc8519b2d359b4cf72b42227835
parent039ff3a61a3d38148df8a899ad4c4c11673f05a8 (diff)
made part of the Isabelle sources;
-rw-r--r--isar/ProofGeneral.ML41
1 files changed, 0 insertions, 41 deletions
diff --git a/isar/ProofGeneral.ML b/isar/ProofGeneral.ML
deleted file mode 100644
index 8cf11f2f..00000000
--- a/isar/ProofGeneral.ML
+++ /dev/null
@@ -1,41 +0,0 @@
-(*
- Isabelle/Isar configuration for Proof General.
-
- Author: David Aspinall <da@dcs.ed.ac.uk>
- Contact: Isabelle maintainer <isabelle@dcs.ed.ac.uk>
-
- ProofGeneral.ML,v 2.16 1998/11/03 16:29:30 da Exp
-
-MMW: I have temporarily removed the theory loader patches, since it
-kept crashing on me.
-*)
-
-
-(** configure output channels to decorate output **)
-
-(*messages*)
-writeln_fn :=
- (std_output o suffix "\n" o enclose (oct_char "360") (oct_char "361"));
-warning_fn :=
- (std_output o suffix "\n" o enclose (oct_char "362") (oct_char "363") o prefix_lines "### ");
-error_fn :=
- (std_output o suffix "\n" o enclose (oct_char "364") (oct_char "365") o prefix_lines "*** ");
-
-(*prompts*)
-Source.decorate_prompt_fn := (fn s => s ^ oct_char "372");
-
-(*theory / proof state*)
-current_goals_markers :=
- let
- val begin_state = oct_char "366";
- val end_state= oct_char "367";
- val begin_goal = oct_char "370";
- in (begin_state, end_state, begin_goal) end;
-
-Toplevel.print_state_fn :=
- (Library.setmp writeln_fn (std_output o suffix "\n") Toplevel.print_state_default);
-
-
-print_mode := ["ProofGeneral"];
-
-Isar.main();