aboutsummaryrefslogtreecommitdiff
path: root/generic/proof-auxmodes.el
diff options
context:
space:
mode:
authorDavid Aspinall2008-07-24 11:07:17 +0000
committerDavid Aspinall2008-07-24 11:07:17 +0000
commit0ff03ffd23f25f8d84153822be1d92dc13f3ab19 (patch)
treeb87dd076c92f1ad45c6a27f2837e76c08cdb8d1b /generic/proof-auxmodes.el
parent7b62c3c51add92fc482c4c72526377deb667df23 (diff)
Fix for deferred loading of maths menu and unicode tokens.
Diffstat (limited to 'generic/proof-auxmodes.el')
-rw-r--r--generic/proof-auxmodes.el10
1 files changed, 3 insertions, 7 deletions
diff --git a/generic/proof-auxmodes.el b/generic/proof-auxmodes.el
index d204154f..69dc0b72 100644
--- a/generic/proof-auxmodes.el
+++ b/generic/proof-auxmodes.el
@@ -43,13 +43,9 @@
;; Maths menu
;;
(defun proof-maths-menu-support-available ()
- "A test to see whether maths-menu support is available."
- (and
- (or (featurep 'maths-menu)
- ;; *should* always succeed unless bundled version broken
- (proof-try-require 'maths-menu))
- ;; Load any optional prover-specific config in <foo>-maths-menu.el
- (or (proof-try-require (proof-ass-sym maths-menu)) t)))
+ "A test to see whether maths-menu support is available.
+The test loads optional prover-specific config in <foo>-maths-menu.el"
+ (or (proof-try-require (proof-ass-sym maths-menu)) t))
(proof-eval-when-ready-for-assistant
(if (and (proof-ass maths-menu-enable)