aboutsummaryrefslogtreecommitdiffhomepage
path: root/isa/isa-syntax.el
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 /isa/isa-syntax.el
parent6549a40f3ab0eefdcd827ed4449884239c0bf2b2 (diff)
fixed bug with font-lock face names
Diffstat (limited to 'isa/isa-syntax.el')
-rw-r--r--isa/isa-syntax.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/isa/isa-syntax.el b/isa/isa-syntax.el
index 8a59c076..bef89b5b 100644
--- a/isa/isa-syntax.el
+++ b/isa/isa-syntax.el
@@ -110,10 +110,10 @@
(list
;; lambda binders
(list (concat "\%\\s-*\\(" isa-ids "\\)\\.") 1
- ''proof-declaration-name-face)
+ 'proof-declaration-name-face)
;; Pi binders
- (list (isa-abstr-regexp "(" ":") 1 ''proof-declaration-name-face)
+ (list (isa-abstr-regexp "(" ":") 1 'proof-declaration-name-face)
;; Kinds
(cons (concat "\\<Prop\\>\\|\\<Set\\>\\|\\<Type\\s-*\\(("
@@ -148,10 +148,10 @@
isa-font-lock-terms
(list
(cons (proof-ids-to-regexp isa-keywords) 'font-lock-keyword-face)
- (cons (proof-ids-to-regexp isa-tacticals) ''proof-tacticals-name-face)
+ (cons (proof-ids-to-regexp isa-tacticals) 'proof-tacticals-name-face)
(list isa-goal-with-hole-regexp 2 'font-lock-function-name-face)
- (list isa-decl-with-hole-regexp 2 ''proof-declaration-name-face)
+ (list isa-decl-with-hole-regexp 2 'proof-declaration-name-face)
(list isa-defn-with-hole-regexp 2 'font-lock-function-name-face)
(list isa-save-with-hole-regexp 2 'font-lock-function-name-face))))