diff options
| author | David Aspinall | 2009-08-28 17:19:10 +0000 |
|---|---|---|
| committer | David Aspinall | 2009-08-28 17:19:10 +0000 |
| commit | 141578789ed742060d8915a28f343e080c5eee95 (patch) | |
| tree | 9ae7049627b272484fa04b38179bdf5e1db8c351 /isar | |
| parent | f9edafd5b576460b92ff4dd493f7aec34a769c86 (diff) | |
Fix compile warnings
Diffstat (limited to 'isar')
| -rw-r--r-- | isar/isar.el | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/isar/isar.el b/isar/isar.el index 2dc2c3b6..4b91f7d7 100644 --- a/isar/isar.el +++ b/isar/isar.el @@ -20,6 +20,8 @@ (eval-when-compile (require 'span) (require 'proof-syntax) + (require 'pg-goals) + (require 'pg-vars) (proof-ready-for-assistant 'isar)) ; compile for isar (require 'isabelle-system) ; system code @@ -240,17 +242,17 @@ See -k option for Isabelle interface script." (defun isar-configure-from-settings () (isar-set-proof-find-theorems-command)) +(defpacustom use-find-theorems-form nil + "Use a form-style input for the find theorems operation." + :type 'boolean + :eval (isar-set-proof-find-theorems-command)) + (defun isar-set-proof-find-theorems-command () (setq proof-find-theorems-command (if isar-use-find-theorems-form 'isar-find-theorems-form 'isar-find-theorems-minibuffer))) -(defpacustom use-find-theorems-form nil - "Use a form-style input for the find theorems operation." - :type 'boolean - :eval (isar-set-proof-find-theorems-command)) - ;;; ;;; Theory loader operations ;;; |
