aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2000-06-07 18:05:32 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2000-06-07 18:05:32 +0000
commit58fd1faea731b3d946af9e60d3cb16b5254fffb5 (patch)
tree24e6f41ab503a3133a609ae69c77c08e72c5d5b9
parent9ef1b04acfee13a2314706a43c896ce64071be6b (diff)
Removed disable of simp tracing from enable/disable pr, desired functionality now in Isabelle's update_thy for PG
-rw-r--r--isa/isa.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/isa/isa.el b/isa/isa.el
index 3081ce29..6566f60d 100644
--- a/isa/isa.el
+++ b/isa/isa.el
@@ -199,7 +199,7 @@ and script mode."
proof-shell-pre-sync-init-cmd "ProofGeneral.init false;"
proof-shell-init-cmd (concat
(proof-assistant-settings-cmd)
- "val pg_saved_gl = ref (!goals_limit); val pg_saved_ts = ref (!trace_simp); fun proofgeneral_enable_pr () = (goals_limit:= !pg_saved_gl; trace_simp:= !pg_saved_ts); fun proofgeneral_disable_pr() = (pg_saved_gl := (if (!goals_limit)>0 then !goals_limit else !pg_saved_gl); goals_limit := 0; trace_simp:=false);")
+ "val pg_saved_gl = ref (!goals_limit); fun proofgeneral_enable_pr () = (goals_limit:= !pg_saved_gl); fun proofgeneral_disable_pr() = (pg_saved_gl := (if (!goals_limit)>0 then !goals_limit else !pg_saved_gl); goals_limit := 0);")
; FIXME improved version for Isabelle99-1:
;proof-shell-init-cmd (proof-assistant-settings-cmd)