diff options
| author | David Aspinall | 1998-10-27 12:14:57 +0000 |
|---|---|---|
| committer | David Aspinall | 1998-10-27 12:14:57 +0000 |
| commit | 2c397c7f9b03f73a550456b8404b835486b3cff3 (patch) | |
| tree | 83074a5b2f8e81ef4d52957aaf045ca9aef8eb4c /isa | |
| parent | 9a82ef99c0a9dac2aa988dbce358c10caef2d684 (diff) | |
Renamed proof-invisible-command proof-shell-invisible-command.
Removed superfluous optional 'relaxed' argument from:
proof-shell-invisibile-command,
proof-grab-lock,
proof-start-queue.
Diffstat (limited to 'isa')
| -rw-r--r-- | isa/isa.el | 13 |
1 files changed, 5 insertions, 8 deletions
@@ -155,14 +155,11 @@ no regular or easily discernable structure." ;; We use the top level theory and then force an update, both to fix ;; up Isabelle's messy dependency handling and to recache the ;; list of loaded files inside emacs. -(defconst isa-usethy-notopml-command "use_thy_and_update \"%s\";" +(defconst isa-usethy-notopml-command "use_thy_and_update \"%s\"; list_loaded_files();" "Command to send to Isabelle to process theory for this ML file.") ;; Unfortunately, use_thy_no_topml followed by update(); doesn't work ;; for *theory* files, because update() will report that the ML file - -;; Unfortunately, use_thy_no_topml followed by update(); doesn't work -;; for *theory* files, because update() will report that the ML file ;; (defconst isa-usethy-command "use_thy \"%s\"; update();" "Command to send to Isabelle to process a theory file.") @@ -274,16 +271,16 @@ isa-proofscript-mode." (defun isa-process-thy-file (file) "Process the theory file FILE. If interactive, use buffer-file-name." (interactive (list buffer-file-name)) - (proof-invisible-command + (proof-shell-invisible-command (format isa-usethy-notopml-command - (file-name-sans-extension file)) t)) + (file-name-sans-extension file)))) (defun isa-retract-thy-file (file) "Retract the theory file FILE. If interactive, use buffer-file-name." (interactive (list buffer-file-name)) - (proof-invisible-command + (proof-shell-invisible-command (format isa-retract-file-command - (file-name-sans-extension file)) t)) + (file-name-sans-extension file)))) ;; Next portion taken from isa-load.el |
