aboutsummaryrefslogtreecommitdiffhomepage
path: root/generic/proof-syntax.el
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2010-08-18 14:10:18 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2010-08-18 14:10:18 +0000
commitd5a97d6d1518a7c0ff6c49b82e2f123297df57c5 (patch)
tree4bf3006eb8576ea20888197c0e1633bbbf7a74e3 /generic/proof-syntax.el
parentdbcb933c08b2c8e12c1ab117484145f0afa5acfa (diff)
Style fixes
Diffstat (limited to 'generic/proof-syntax.el')
-rw-r--r--generic/proof-syntax.el12
1 files changed, 8 insertions, 4 deletions
diff --git a/generic/proof-syntax.el b/generic/proof-syntax.el
index 0365ea37..9775002d 100644
--- a/generic/proof-syntax.el
+++ b/generic/proof-syntax.el
@@ -13,10 +13,14 @@
(require 'proof-compat) ; proof-buffer-syntactic-context
(require 'pg-pamacs) ; proof-ass-sym
+
+;;; Commentary:
+;;
+
;;; Code:
(defsubst proof-ids-to-regexp (l)
- "Maps a non-empty list of tokens `l' to a regexp matching any element.
+ "Maps a non-empty list of tokens L to a regexp matching any element.
Uses a regexp of the form \\_<...\\_>."
(concat "\\_<\\(?:"
(regexp-opt l) ; was: (mapconcat 'identity l "\\|")
@@ -152,7 +156,7 @@ Meant to be used from `font-lock-keywords' as a way
to unfontify commas in declarations and definitions.
Useful for provers which have declarations of the form x,y,z:Ty
All that can be said for it is that the previous ways of doing
-this were even more bogus...."
+this were even more bogus...."
(while (proof-search-forward "," limit t)
(if (memq (get-text-property (1- (point)) 'face)
'(proof-declaration-name-face
@@ -172,11 +176,11 @@ this were even more bogus...."
(eval-after-load "font-lock"
'(progn
-(defadvice font-lock-fontify-keywords-region
+(defadvice font-lock-fontify-keywords-region
(before font-lock-fontify-keywords-advice (beg end loudly))
"Call proof assistant specific syntactic region fontify.
If it's bound, we call <PA>-font-lock-fontify-syntactically-region."
- (when (and proof-buffer-type
+ (when (and proof-buffer-type
(fboundp (proof-ass-sym font-lock-fontify-syntactically-region)))
(funcall (proof-ass-sym font-lock-fontify-syntactically-region)
beg end loudly)))