From 38eca24f0784549bd1924b46a546ec54bcfdf13e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 18 Feb 2013 18:57:47 +0100 Subject: [PATCH] ox-publish: Fix code typo * lisp/ox-publish.el (org-publish-collect-index): Fix typo. --- lisp/ox-publish.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-publish.el b/lisp/ox-publish.el index e96d40948..59f7a01e8 100644 --- a/lisp/ox-publish.el +++ b/lisp/ox-publish.el @@ -932,7 +932,7 @@ its CDR is a string." ((not parent) nil) ((let ((id (org-element-property :ID parent))) (and id (cons 'id id)))) - ((let ((id (org-element-property :CUSTOM-ID parent))) + ((let ((id (org-element-property :CUSTOM_ID parent))) (and id (cons 'custom-id id)))) (t (cons 'name (org-element-property :raw-value parent))))))))