From 22a56755cfd4d7acd5a4e59ecf14626e26c7b23a Mon Sep 17 00:00:00 2001 From: Pierre Courtieu Date: Wed, 4 Feb 2015 09:42:59 +0000 Subject: Fixed previous commit (wrong regexp). --- coq/coq-syntax.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coq/coq-syntax.el b/coq/coq-syntax.el index 761cc51e..137062eb 100644 --- a/coq/coq-syntax.el +++ b/coq/coq-syntax.el @@ -1058,7 +1058,7 @@ It is used: (cons coq-error-regexp 'proof-error-face) (cons (proof-regexp-alt-list-symb (list "In environment" "The term" "has type")) 'proof-error-face) (cons (proof-regexp-alt-list-symb (list "Set" "Type" "Prop")) 'font-lock-type-face) - (cons "^[^\n:()]+:" 'proof-declaration-name-face) + (cons "^ *[^\n :()]+ *:" 'proof-declaration-name-face) (list "^\\([^ \n]+\\) \\(is defined\\)" (list 1 'font-lock-function-name-face t))))) @@ -1066,7 +1066,7 @@ It is used: (append coq-font-lock-terms (list - (cons "^[^\n:()]+:" 'proof-declaration-name-face) + (cons "^ *[^ \n:()=]+ *:" 'proof-declaration-name-face) (cons (proof-regexp-alt-list-symb (list "Set" "Type" "Prop")) 'font-lock-type-face)))) -- cgit v1.2.3