emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/adoc-mode 192bd717df 096/199: fixed byte compilation error


From: ELPA Syncer
Subject: [nongnu] elpa/adoc-mode 192bd717df 096/199: fixed byte compilation error regarding void function adoc-re-verbatim-paragraph-sequence
Date: Sun, 3 Sep 2023 06:59:37 -0400 (EDT)

branch: elpa/adoc-mode
commit 192bd717dff6ae2128484c29b406822a6bc50aa4
Author: sensorflo <sensorflo@gmail.com>
Commit: sensorflo <sensorflo@gmail.com>

    fixed byte compilation error regarding void function 
adoc-re-verbatim-paragraph-sequence
---
 adoc-mode.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/adoc-mode.el b/adoc-mode.el
index 870afdbe67..238e907827 100644
--- a/adoc-mode.el
+++ b/adoc-mode.el
@@ -1448,13 +1448,13 @@ Concerning TYPE, LEVEL and SUB-TYPE see 
`adoc-re-llisti'."
     '(1 '(face adoc-complex-replacement adoc-reserved t))
     '(2 '(face adoc-align adoc-reserved t))))
 
-(defmacro adoc-kw-verbatim-paragraph-sequence ()
+(defun adoc-kw-verbatim-paragraph-sequence ()
   "Creates a keyword which highlights a sequence of verbatim paragraphs."
-  `(list
+  (list
     ;; matcher function
-    (lambda (end)
+    `(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))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]