aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall1998-10-01 14:13:39 +0000
committerDavid Aspinall1998-10-01 14:13:39 +0000
commit9b03e5c730f86147e1c1e5823878b363ea2be9e1 (patch)
tree8c574a1475b8bacd248f8930e82f73b89472cea6
parentb952e48ab0ff1b0fcc978ca384b9348a80a82515 (diff)
Renamed file
-rw-r--r--isa/ProofGeneral.ML (renamed from isa/isa-print-functions.ML)17
1 files changed, 12 insertions, 5 deletions
diff --git a/isa/isa-print-functions.ML b/isa/ProofGeneral.ML
index 3af539a5..bd0ccc3e 100644
--- a/isa/isa-print-functions.ML
+++ b/isa/ProofGeneral.ML
@@ -1,15 +1,13 @@
(*
- isa-print-functions.ML
+ ProofGeneral.ML
- Customized version of Isabelle printing for script management
- mode.
+ Isabelle configuration for Proof General.
$Id$
*)
-
val proof_state_special_prefix="\248";
val proof_state_special_suffix="\249";
val goal_start_special="\253";
@@ -167,6 +165,15 @@ end
+(* Some top-level commands for Proof General.
+ These could easily be customized to do different things.
+*)
+structure ProofGeneral =
+ struct
+ fun kill_goal () = Goal "PROP no_goal_supplied";
+ fun help () = print version;
+ fun show_context () = the_context();
+ end;
- \ No newline at end of file
+ \ No newline at end of file