Skip to content

Commit

Permalink
Fix #43. Add missing quote before adoc-reserved in adoc-kw-verbatim-p…
Browse files Browse the repository at this point in the history
…aragraph-sequence
  • Loading branch information
TobiasZawada committed May 29, 2022
1 parent 141af8c commit 02f53a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adoc-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -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))))

Expand Down

0 comments on commit 02f53a3

Please sign in to comment.