diff options
| author | David Aspinall | 2002-11-20 12:24:13 +0000 |
|---|---|---|
| committer | David Aspinall | 2002-11-20 12:24:13 +0000 |
| commit | f3156e7062a140c9d7a2f00f4bdb615a57e503ef (patch) | |
| tree | 0cefa0841bae4fb8922be0c70dee48da3738d0d6 | |
| parent | 0cd64212adf8ae4ee414dae4a8b59af2d1bbad95 (diff) | |
Make proof-assistants-settings-cmd be evaluated at right time.
| -rw-r--r-- | isa/isa.el | 2 | ||||
| -rw-r--r-- | isar/isar.el | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -183,7 +183,7 @@ and script mode." ;; restoring settings saved by Proof General, etc. proof-shell-pre-sync-init-cmd "ProofGeneral.init false;" - proof-shell-init-cmd (proof-assistant-settings-cmd) + proof-shell-init-cmd '(proof-assistant-settings-cmd) proof-shell-restart-cmd "ProofGeneral.isa_restart();" proof-shell-quit-cmd "quit();" diff --git a/isar/isar.el b/isar/isar.el index 0775b018..ac422af8 100644 --- a/isar/isar.el +++ b/isar/isar.el @@ -217,7 +217,7 @@ See -k option for Isabelle interface script." pg-topterm-char ?\370 proof-assistant-setting-format 'isar-markup-ml - proof-shell-init-cmd (proof-assistant-settings-cmd) + proof-shell-init-cmd '(proof-assistant-settings-cmd) proof-shell-restart-cmd "ProofGeneral.restart" proof-shell-eager-annotation-start-length 1 |
