summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustav Wikström <gustav@whil.se>2020-01-18 01:41:16 +0100
committerGustav Wikström <gustav@whil.se>2020-01-18 01:41:16 +0100
commit52fafd300533d924e4159c05c2b81df6e5676d52 (patch)
treec59f265864b181a647c5c46d64db1b2e53678d4e
parent20d293b4aa39cd10a621bdf11713568a0b6f22d5 (diff)
downloadorg-mode-52fafd300533d924e4159c05c2b81df6e5676d52.tar.gz
Fix backtick in org-odt-inline-image-rules
* lisp/ox-odt.el (org-odt-inline-image-rules): Fix error to make the list evaluate inline code at definition.
-rw-r--r--lisp/ox-odt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el
index 28d60ae..4f91e4a 100644
--- a/lisp/ox-odt.el
+++ b/lisp/ox-odt.el
@@ -743,7 +743,7 @@ link's path."
:value-type (regexp :tag "Path")))
(defcustom org-odt-inline-image-rules
- '(("file" . ,(regexp-opt '(".jpeg" ".jpg" ".png" ".gif" ".svg")))
+ `(("file" . ,(regexp-opt '(".jpeg" ".jpg" ".png" ".gif" ".svg")))
("attachment" . ,(regexp-opt '(".jpeg" ".jpg" ".png" ".gif" ".svg"))))
"Rules characterizing image files that can be inlined into ODT.