From 4caad0555fcfd34c9357d146ec3d3bbf547b01e3 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 14 Feb 2017 17:27:26 +0100 Subject: [PATCH] ox-html: Fix last commit (part 2) * lisp/ox-html.el (org-html-plain-list): Fix typo. --- lisp/ox-html.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 3ecf4e5b1..0ca19ef45 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -3147,10 +3147,10 @@ the plist used as a communication channel." CONTENTS is the contents of the list. INFO is a plist holding contextual information." (let* ((type (pcase (org-element-property :type plain-list) - ('ordered "ol") - ('unordered "ul") - ('descriptive "dl") - (type (error "Unknown HTML list type: %s" type)))) + (`ordered "ol") + (`unordered "ul") + (`descriptive "dl") + (other (error "Unknown HTML list type: %s" other)))) (class (format "org-%s" type)) (attributes (org-export-read-attribute :attr_html plain-list))) (format "<%s %s>\n%s"