aboutsummaryrefslogtreecommitdiff
path: root/isar
diff options
context:
space:
mode:
authorDavid Aspinall2009-08-28 17:19:10 +0000
committerDavid Aspinall2009-08-28 17:19:10 +0000
commit141578789ed742060d8915a28f343e080c5eee95 (patch)
tree9ae7049627b272484fa04b38179bdf5e1db8c351 /isar
parentf9edafd5b576460b92ff4dd493f7aec34a769c86 (diff)
Fix compile warnings
Diffstat (limited to 'isar')
-rw-r--r--isar/isar.el12
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
;;;