>From c92105507d97159a7ba7c1af02c4a3a517ccdf6a Mon Sep 17 00:00:00 2001 From: Suhail Date: Tue, 11 Jun 2024 20:05:22 -0400 Subject: [PATCH] org-export: Fix assignment of bind keywords * lisp/ox.el (org-export--set-variables): The value of the variable corresponds to the cadr of the entry and not the cdr. TINYCHANGE --- lisp/ox.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox.el b/lisp/ox.el index 1c52ca290..f8a763bc7 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -2585,7 +2585,7 @@ (defun org-export-install-filters (defun org-export--set-variables (variable-alist) "Set buffer-local variables according to VARIABLE-ALIST in current buffer." (pcase-dolist (`(,var . ,val) variable-alist) - (set (make-local-variable var) val))) + (set (make-local-variable var) (car val)))) (cl-defun org-export-copy-buffer (&key to-buffer drop-visibility drop-narrowing drop-contents base-commit: 3e4c89e55649f95cffbf70fcf64dcbc69760f96f -- 2.45.2