branch: elpa/adoc-mode
commit 02f53a301b8e5b6e4934b47ab326892f70719c32
Author: TobiasZawada <[email protected]>
Commit: TobiasZawada <[email protected]>
Fix #43. Add missing quote before adoc-reserved in
adoc-kw-verbatim-paragraph-sequence
---
adoc-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/adoc-mode.el b/adoc-mode.el
index 23435054ab..07deba26e8 100644
--- a/adoc-mode.el
+++ b/adoc-mode.el
@@ -1528,7 +1528,7 @@ Concerning TYPE, LEVEL and SUB-TYPE see `adoc-re-llisti'."
;; matcher function
`(lambda (end)
(and (re-search-forward ,(adoc-re-verbatim-paragraph-sequence) end t)
- (not (text-property-not-all (match-beginning 0) (match-end 0)
adoc-reserved nil))))
+ (not (text-property-not-all (match-beginning 0) (match-end 0)
'adoc-reserved nil))))
;; highlighers
'(1 '(face adoc-monospace adoc-reserved t font-lock-multiline t))))