From 912c696cd96b7c3d790b8ae6f5a635ee90ea4b96 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 27 Apr 2020 10:39:05 +0200 Subject: [PATCH] ox: Fix b4e91b7e944c900db6b8217d78011afcd2c1e62c * lisp/ox.el (org-export--get-inbuffer-options): Add missing PLIST. --- lisp/ox.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/ox.el b/lisp/ox.el index a225ee2b6..20d2ad88c 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -1484,6 +1484,7 @@ Assume buffer is in Org mode. Narrowing, if any, is ignored." (`("OPTIONS" . ,values) (setq plist (apply #'org-combine-plists + plist (mapcar (lambda (v) (org-export--parse-option-keyword v backend)) values))))