aboutsummaryrefslogtreecommitdiffhomepage
path: root/lego
diff options
context:
space:
mode:
authorGravatar Thomas Kleymann <da+pg-tms@inf.ed.ac.uk>1998-11-03 11:47:13 +0000
committerGravatar Thomas Kleymann <da+pg-tms@inf.ed.ac.uk>1998-11-03 11:47:13 +0000
commitaf1e37834fca25210821a558b638e98309643293 (patch)
tree9ff57a7da348bbfef26c65d93a63039fa38efa1b /lego
parent6549a40f3ab0eefdcd827ed4449884239c0bf2b2 (diff)
fixed bug with font-lock face names
Diffstat (limited to 'lego')
-rw-r--r--lego/lego-syntax.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lego/lego-syntax.el b/lego/lego-syntax.el
index 34608afb..64399546 100644
--- a/lego/lego-syntax.el
+++ b/lego/lego-syntax.el
@@ -64,7 +64,7 @@
; lambda binders
(list (lego-decl-defn-regexp "[:|?]") 1
- ''proof-declaration-name-face)
+ 'proof-declaration-name-face)
; let binders
(list lego-definiendum-alternative-regexp 1 'font-lock-function-name-face)
@@ -72,7 +72,7 @@
; Pi and Sigma binders
(list (concat "[{<]\\s *\\(" lego-ids "\\)") 1
- ''proof-declaration-name-face)
+ 'proof-declaration-name-face)
;; Kinds
(cons (concat "\\<Prop\\>\\|\\<Type\\s *\\(("
@@ -96,7 +96,7 @@
lego-font-lock-terms
(list
(cons (proof-ids-to-regexp lego-keywords) 'font-lock-keyword-face)
- (cons (proof-ids-to-regexp lego-tacticals) ''proof-tacticals-name-face)
+ (cons (proof-ids-to-regexp lego-tacticals) 'proof-tacticals-name-face)
(list lego-goal-with-hole-regexp 2 'font-lock-function-name-face)
(list lego-save-with-hole-regexp 2 'font-lock-function-name-face))))