aboutsummaryrefslogtreecommitdiff
path: root/generic
diff options
context:
space:
mode:
authorPierre Courtieu2006-08-23 14:47:28 +0000
committerPierre Courtieu2006-08-23 14:47:28 +0000
commitf10621fce14c44b8d776cdf1abb9998767fceec1 (patch)
treeabef7563550cba18ab124b3aa9d95738c7c1d2a8 /generic
parentb83fa79d3764763deeba9e403e4646e22731d810 (diff)
Coq indentation small fixes.
Diffstat (limited to 'generic')
-rw-r--r--generic/proof-syntax.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/proof-syntax.el b/generic/proof-syntax.el
index db19ce4e..03bd7b00 100644
--- a/generic/proof-syntax.el
+++ b/generic/proof-syntax.el
@@ -115,8 +115,8 @@ nil if a region cannot be found."
If so, return non-nil."
(or
(proof-buffer-syntactic-context)
- (proof-looking-at-safe proof-script-comment-start-regexp)
- (proof-looking-at-safe proof-string-start-regexp)))
+ (when (proof-looking-at-safe proof-script-comment-start-regexp) 'comment)
+ (when (proof-looking-at-safe proof-string-start-regexp) 'string)))