From 008e6030ac5309c71e15705957c049aa55324071 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 10 Jun 2024 10:58:46 -0400 Subject: [PATCH] Backport commit d3524560e from Emacs * lisp/ox.el (org-export-filters-alist): Don't define as constant. d3524560ee3cb075125f0af158d4af01cb2ab546 Stefan Monnier Mon Jun 10 10:58:46 2024 -0400 --- lisp/ox.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox.el b/lisp/ox.el index b28fe2179..1c52ca290 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -185,7 +185,7 @@ All these properties should be backend agnostic. Backend specific properties are set through `org-export-define-backend'. Properties redefined there have precedence over these.") -(defconst org-export-filters-alist +(defvar org-export-filters-alist '((:filter-body . org-export-filter-body-functions) (:filter-bold . org-export-filter-bold-functions) (:filter-babel-call . org-export-filter-babel-call-functions)